v106

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-02160524464.6 KB
Workflows

List workflow runs

Returns durable runs associated with one workflow.

get/api/v1/workflows/{name}/runs

Path parameters

namestring required

Workflow slug or name.

Query parameters

page[limit]integer

Maximum number of items to return per page.

page[offset]integer

Number of items to skip before returning results.

Response

Paginated durable runs for the workflow

Example response

{
  "data": [
    {
      "repository": {
        "name": "fabro-sh/fabro",
        "origin_url": "https://github.com/fabro-sh/fabro.git"
      },
      "lifecycle": {
        "error": {
          "message": "Stage 'apply-changes' exceeded maximum retries."
        }
      },
      "timing": {
        "wall_time_ms": 420000,
        "inference_time_ms": 120000,
        "tool_time_ms": 60000,
        "active_time_ms": 180000
      },
      "diff": {
        "files_changed": 42,
        "additions": 567,
        "deletions": 234
      },
      "pull_request": {
        "owner": "fabro-sh",
        "repo": "fabro",
        "number": 123,
        "html_url": "https://github.com/fabro-sh/fabro/pull/123"
      },
      "current_question": {
        "text": "Accept or push for another round?"
      }
    }
  ]
}