Skip to main content
GET
/
api
/
v1
/
runs
List Runs
curl --request GET \
  --url https://api.example.com/api/v1/runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "run_id": "<string>",
      "goal": "<string>",
      "title": "<string>",
      "labels": {},
      "repository": {
        "name": "api-server"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "status": {
        "kind": "submitted"
      },
      "workflow_name": "<string>",
      "workflow_slug": "<string>",
      "host_repo_path": "<string>",
      "start_time": "2023-11-07T05:31:56Z",
      "pending_control": "cancel",
      "duration_ms": 1,
      "elapsed_secs": 123,
      "total_usd_micros": 123,
      "superseded_by": "<string>"
    }
  ],
  "meta": {
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.

Query Parameters

page[limit]
integer
default:20

Maximum number of items to return per page.

Required range: 1 <= x <= 100
page[offset]
integer
default:0

Number of items to skip before returning results.

Required range: x >= 0
include_archived
boolean
default:false

Whether to include archived runs in the response. Defaults to false.

Response

200 - application/json

Paginated durable run summaries

Paginated list of runs.

data
object[]
required
meta
object
required

Pagination metadata included in every paginated response.