Skip to main content
GET
/
talk2data
/
chat
/
messages
/
sessions
/
{session_id}
/
turns
/
{turn_id}
/
stream
Stream Chat Messages
curl --request GET \
  --url https://api.example.com/talk2data/chat/messages/sessions/{session_id}/turns/{turn_id}/stream \
  --header 'Authorization: Bearer <token>' \
  --header 'x-project-id: <x-project-id>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<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 identifier

turn_id
string
required

Turn identifier

Response

Successful Response