curl --request GET \
--url https://api.backside.app/api/v1/agents/{kind}/runs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"agent_kind": "<string>",
"consecutive_failures": 123,
"cost_usd_cents": 123,
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"input": "<unknown>",
"platform_fee_cents": 123,
"run_at": "2023-11-07T05:31:56Z",
"status": "<string>",
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_at": "2023-11-07T05:31:56Z",
"budget_usd_cents": 123,
"deadline_at": "2023-11-07T05:31:56Z",
"failure_category": "<string>",
"failure_detail": "<string>",
"output": "<unknown>"
}
],
"has_more": true,
"next_cursor": "<string>"
}curl --request GET \
--url https://api.backside.app/api/v1/agents/{kind}/runs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"agent_kind": "<string>",
"consecutive_failures": 123,
"cost_usd_cents": 123,
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"input": "<unknown>",
"platform_fee_cents": 123,
"run_at": "2023-11-07T05:31:56Z",
"status": "<string>",
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_at": "2023-11-07T05:31:56Z",
"budget_usd_cents": 123,
"deadline_at": "2023-11-07T05:31:56Z",
"failure_category": "<string>",
"failure_detail": "<string>",
"output": "<unknown>"
}
],
"has_more": true,
"next_cursor": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Agent kind identifier
Filter by run status
Page size (default 50, max 200)
RFC3339 cursor
Paginated run list
Concrete paginated run list for OpenAPI schema generation. JSON shape
matches PaginatedResponse<AgentRunRecord> — utoipa can't derive
ToSchema for the generic type parameter, so handlers keep returning
PaginatedResponse and this mirror only exists for the schema.
Was this page helpful?