Skip to main content
GET
/
agents
/
metrics
/
results
List Metric Results
curl --request GET \
  --url https://api.cartesia.ai/agents/metrics/results \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "data": [
    {
      "id": "<string>",
      "metricId": "<string>",
      "metricName": "<string>",
      "summary": "<string>",
      "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
          }
        }
      ],
      "agentId": "<string>",
      "callId": "<string>",
      "deploymentId": "<string>",
      "result": "<string>",
      "jsonResult": {},
      "value": "<any>",
      "status": "completed",
      "runId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_page": "<string>"
}

Authorizations

Authorization
string
header
required

Headers

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

Query Parameters

agent_id
string | null
deployment_id
string | null
metric_id
string | null
call_id
string | null
starting_after
string | null
ending_before
string | null
limit
integer | null

Response

200 - application/json
data
MetricResult · object[]
required
has_more
boolean
required
next_page
string | null