Skip to main content
GET
/
api
/
v1
/
agents
/
{kind}
/
runs
/
{id}
Fetch one run plus its journal steps (in seq order).
curl --request GET \
  --url https://api.backside.app/api/v1/agents/{kind}/runs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
  "steps": [
    {
      "input": "<unknown>",
      "kind": "<string>",
      "name": "<string>",
      "seq": 123,
      "started_at": "2023-11-07T05:31:56Z",
      "cache_read_tokens": 123,
      "cache_write_tokens": 123,
      "completed_at": "2023-11-07T05:31:56Z",
      "cost_usd_cents": 123,
      "input_tokens": 123,
      "model": "<string>",
      "output": "<unknown>",
      "output_tokens": 123
    }
  ],
  "budget_usd_cents": 123,
  "deadline_at": "2023-11-07T05:31:56Z",
  "failure_category": "<string>",
  "failure_detail": "<string>",
  "output": "<unknown>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

kind
string
required

Agent kind identifier

id
string<uuid>
required

Run ID

Response

Run with journal steps

GET /agents/{kind}/runs/{id} response — the run plus its journal entries in seq order. Steps are flattened into a list; there are no sub-resources yet (agent_step_payloads is internal; agent_events is chunk 10+).

agent_kind
string
required
consecutive_failures
integer<int32>
required
cost_usd_cents
integer<int64>
required
created_at
string<date-time>
required
id
string<uuid>
required
input
any
required
platform_fee_cents
integer<int64>
required
run_at
string<date-time>
required
status
string
required
tenant_id
string<uuid>
required
updated_at
string<date-time>
required
steps
object[]
required
budget_usd_cents
integer<int64> | null
deadline_at
string<date-time> | null
failure_category
string | null
failure_detail
string | null
output
any