Get all chat messages for a call.
Returns chat messages if the call belongs to an assistant in your organization.
Retrieve the LLM conversation messages for a specific call. This returns the actual messages exchanged between the system, user, and AI assistant during the call - including system prompts, user inputs, and AI responses.Documentation Index
Fetch the complete documentation index at: https://docs.burki.dev/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Required | Description |
|---|---|---|---|
call_id | integer | Yes | The internal call ID (not the call SID) |
| Parameter | Type | Required | Description |
|---|---|---|---|
role | string | No | Filter by message role: system, user, or assistant |
| Field | Type | Description |
|---|---|---|
id | integer | Unique message ID |
call_id | integer | ID of the parent call |
role | string | Message role: system, user, or assistant |
content | string | The message content |
message_index | integer | Position in the conversation (0-indexed) |
timestamp | string | When the message was recorded (ISO 8601) |
llm_provider | string | LLM provider used (e.g., openai, anthropic) |
llm_model | string | Specific model used (e.g., gpt-4o-mini) |
prompt_tokens | integer | Number of prompt tokens used |
completion_tokens | integer | Number of completion tokens generated |
total_tokens | integer | Total tokens for this message |
| Role | Description |
|---|---|
system | System prompt and instructions for the AI |
user | User’s spoken input (transcribed) |
assistant | AI assistant’s response |
system)Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by role (system/user/assistant)
Successful Response