Skip to main content
GET
/
agents
/
calls
/
{call_id}
Get Call
curl --request GET \
  --url https://api.cartesia.ai/agents/calls/{call_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "id": "<string>",
  "agent_id": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "transcript": [
    {
      "role": "<string>",
      "text": "<string>",
      "text_chunks": [
        {
          "text": "<string>",
          "start_timestamp": 123
        }
      ],
      "start_timestamp": 123,
      "end_timestamp": 123,
      "end_reason": "<string>",
      "tool_calls": [
        {
          "id": "<string>",
          "name": "<string>",
          "arguments": {}
        }
      ],
      "vad_buffer_ms": 123,
      "tts_ttfb": 123,
      "log_event": {
        "event": "<string>",
        "metadata": {},
        "timestamp": 123
      },
      "log_metric": {
        "name": "<string>",
        "value": 123,
        "timestamp": 123
      }
    }
  ],
  "telephony_params": {
    "to": "<string>",
    "from": "<string>"
  },
  "summary": "<string>",
  "status": "active",
  "error_message": "<string>",
  "deployment_id": "<string>"
}

Authorizations

Authorization
string
header
required

Headers

Cartesia-Version
enum<string>
required
Available options:
2024-06-10,
2024-11-13,
2025-04-16
Example:

Path Parameters

call_id
string
required

Response

200 - application/json
id
string
required
agent_id
string
required
status
enum<string>
required
Available options:
active,
completed,
failed,
cancelled
start_time
string<date-time> | null
end_time
string<date-time> | null
transcript
AgentTranscript · object[] | null
telephony_params
object
summary
string | null
error_message
string | null
deployment_id
string | null