List Metric Results

Paginated list of metric results. Filter results using the query parameters,

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Cartesia-Version"2025-04-16"Required

Query parameters

agent_idstringOptional
The ID of the agent.
deployment_idstringOptional
The ID of the deployment.
metric_idstringOptional
The ID of the metric.
call_idstringOptional
The ID of the call.
starting_afterstringOptional

A cursor to use in pagination. starting_after is a metric result ID that defines your place in the list. For example, if you make a /metrics/results request and receive 100 objects, ending with metric_result_abc123, your subsequent call can include starting_after=metric_result_abc123 to fetch the next page of the list.

ending_beforestringOptional

A cursor to use in pagination. ending_before is a metric result ID that defines your place in the list. For example, if you make a /metrics/results request and receive 100 objects, starting with metric_result_abc123, your subsequent call can include ending_before=metric_result_abc123 to fetch the previous page of the list.

limitintegerOptionalDefaults to 10
The number of metric results to return per page, ranging between 1 and 100.

Response

This endpoint returns an object.
datalist of objects
List of metric results.
has_moreboolean

Whether there are more metric results to fetch (using starting_after=id, where id is the ID of the last MetricResult in the current response).

next_pagestring or null
The cursor for the next page of results.