v1

latestOpenAPI 3.0.02026-07-26870415.2 KB
agents

List agent runs

Returns cursor-paginated runs for a V2 chat agent, newest first. Each run summarizes its status, disposition, error, latency, and token usage. Use get agent run for the full tool-call trace.

get/v1/agents/{id}/runs

Path parameters

idstring required

Agent id.

Example:ag77c0dy0mgdpzmqz6tesry8w184002s

Query parameters

workspace_idstring

Optional workspace override. If omitted, Conduit resolves the agent's workspace automatically.

Example:j57demo8f8x7c9v0n2q4r6t8y1u3i5o
limitinteger
cursorstring
status'accepted' | 'running' | 'completed' | 'failed'

Filter runs by lifecycle status.

Response

Agent runs

next_cursorstring nullable required
has_moreboolean required

Example response

{
  "data": [
    {
      "id": "ar77c0dy0mgdpzmqz6tesry8w184002s",
      "run_id": "run_9f3a1c7e",
      "agent_id": "ag77c0dy0mgdpzmqz6tesry8w184002s",
      "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "status": "completed",
      "disposition": "resolved",
      "contact_id": "co77c0dy0mgdpzmqz6tesry8w184002s",
      "conversation_id": "cv77c0dy0mgdpzmqz6tesry8w184002s",
      "trigger_id": "tr77c0dy0mgdpzmqz6tesry8w184002s",
      "error": null,
      "duration_ms": 4213,
      "token_usage": {
        "input": 1820,
        "output": 342
      },
      "total_cost": 0.0121,
      "trace_id": "0f9c2b1d8a7e4f36",
      "created_at": "2026-04-03T03:14:15.000Z",
      "completed_at": "2026-04-03T03:14:19.213Z"
    }
  ],
  "next_cursor": "page-token",
  "has_more": true
}