GET
Get Usage History
Возвращает постраничный список запусков по всем агентам вашей организации, включая длительность, стоимость и сведения об использовании для каждого запуска. Используйте start_date и end_date (в формате ISO 8601), чтобы задать временной диапазон, и page / limit для постраничной навигации. Передайте filters в виде строки в формате JSON, чтобы дополнительно сузить результаты. Чтобы получить полный транскрипт или запись для конкретного запуска, используйте Получить сведения о запуске агента.

Headers

authorization
string | null
X-API-Key
string | null

Query Parameters

start_date
string | null

ISO 8601 date-time string (UTC). Lower bound (inclusive) on created_at.

Example:

"2026-04-01T00:00:00Z"

end_date
string | null

ISO 8601 date-time string (UTC). Upper bound (inclusive) on created_at.

Example:

"2026-05-01T00:00:00Z"

page
integer
default:1
Required range: x >= 1
limit
integer
default:50
Required range: 1 <= x <= 100
filters
string | null

JSON-encoded array of filter objects. Each object has the shape:

Supported attribute / type / value combinations:

Unknown attributes and unsupported type values are silently ignored.

Date filtering on this endpoint is done via the dedicated start_date / end_date query params, not via a dateRange filter object.

Example:

"[{\"attribute\":\"callerNumber\",\"type\":\"text\",\"value\":{\"value\":\"415555\"}}]"

Response

Successful Response

runs
WorkflowRunUsageResponse · object[]
required
total_agentika_tokens
number
required
total_duration_seconds
integer
required
total_count
integer
required
page
integer
required
limit
integer
required
total_pages
integer
required