Unispec Docs
ApiAgents

List agent runs

Persisted per-turn traces, newest first (observability/evals).

GET
/v1/agents/{name}/runs

Persisted per-turn traces, newest first (observability/evals).

Authorization

TokenAuth
Authorization<token>

Project API key as Token lb-sk_...

In: header

Path Parameters

name*string

Query Parameters

limit?integer
Rangevalue <= 100
Default50
offset?integer
Default0
conversation_id?string

Filter to one threaded conversation.

Response Body

application/json

curl -X GET "https://example.com/v1/agents/string/runs"
{  "runs": [    {      "id": "string",      "created_at": "2019-08-24T14:15:22Z",      "escalated": true,      "conversation_id": "string",      "llm_calls": 0,      "tokens_in": 0,      "tokens_out": 0,      "latency_ms": 0    }  ]}