Skip to main content
GET
/
talk2data
/
chat
/
sessions
/
{session_id}
Get session
curl --request GET \
  --url https://api.example.com/talk2data/chat/sessions/{session_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-project-id: <x-project-id>'
{
  "session_id": "<string>",
  "title": "<string>",
  "turn_count": 123,
  "message_count": 123,
  "artifact_count": 123,
  "created_at": "<string>",
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-project-id
string
required

Project identifier

Path Parameters

session_id
string
required

Session ID

Response

Successful Response

Single session with counts (GET /api/chat/sessions/{session_id}).

session_id
string
required
title
string | null
required
turn_count
integer
required
message_count
integer
required
artifact_count
integer
required
created_at
string
required
updated_at
string
required