Skip to main content
GET
/
v1
/
chat
/
{session_id}
/
stream
Stream Chat Progress
curl --request GET \
  --url https://api.example.com/v1/chat/{session_id}/stream
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

authorization
string | null

Path Parameters

session_id
string
required

Query Parameters

last_sequence
integer
default:0

SSE Last-Event-ID resume: only replay intermediate responses with sequence > this. Reconnects pass the highest sequence already processed so old events are NOT re-emitted; default 0 = full history.

Required range: x >= 0
job_id
string
required

Job ID to stream progress for

token
string

Authentication token (query parameter for EventSource compatibility)

api_key
string

API key (query parameter for EventSource compatibility)

Response

Successful Response