Skip to main content
GET
/
agents
/
calls
/
{call_id}
/
logs
Get Call Runtime Logs
curl --request GET \
  --url https://api.cartesia.ai/agents/calls/{call_id}/logs \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "call_id": "<string>",
  "logs": [
    "<string>"
  ],
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Cartesia API key (sk_car_...). Get one at play.cartesia.ai/keys.

Headers

Cartesia-Version
enum<string>
required

API version header.

Available options:
2024-06-10,
2024-11-13,
2025-04-16,
2026-03-01
Example:

"2026-03-01"

Path Parameters

call_id
string
required

The ID of the call.

Response

The runtime logs associated with a specific agent call.

call_id
string
required

The ID of the call.

logs
string[]
required

The runtime log lines produced by the agent's code during the call.

updated_at
string<date-time>
required

The date and time when the logs were last updated.