Skip to main content
GET
/
api
/
v1
/
integration
/
conversations
/
{conversation_id}
cURL
curl -X GET 'https://app-be.thesis.io/api/v1/integration/conversations/conv_abc123def456' \
  -H 'Authorization: Bearer YOUR_SPACE_API_TOKEN'
{
  "conversation_id": "conv_abc123def456",
  "title": "Code Review Session",
  "status": "RUNNING",
  "created_at": "2024-01-15T10:30:00Z",
  "last_updated_at": "2024-01-15T11:45:00Z",
  "selected_repository": "user/project-repo",
  "research_mode": "deep_research",
  "events": [
    {}
  ],
  "final_result": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API token in the format: Bearer <your_token_here>

Path Parameters

conversation_id
string
required

Response

Conversation details retrieved successfully

conversation_id
string
required

Unique conversation identifier

Example:

"conv_abc123def456"

title
string
required

Conversation title

Example:

"Code Review Session"

status
string
required

Current conversation status

Example:

"RUNNING"

created_at
string
required

ISO timestamp when conversation was created

Example:

"2024-01-15T10:30:00Z"

last_updated_at
string
required

ISO timestamp of last activity

Example:

"2024-01-15T11:45:00Z"

selected_repository
string | null
required

Associated repository if any

Example:

"user/project-repo"

research_mode
string | null
required

Research mode used in conversation

Example:

"deep_research"

events
Events · object[] | null

List of conversation events/messages

final_result

Final result if conversation is completed