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
}
}Returns durable run summaries from the backing store, including runs persisted before the current server boot. Archived runs are hidden by default; pass include_archived=true to include them in the response.
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
}
}Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0Whether to include archived runs in the response. Defaults to false.