Skip to main content
GET
/
workflow
/
runs
List workflow runs
curl --request GET \
  --url http://localhost:3001/workflow/runs
{
  "runs": [
    {
      "workflowId": "<string>",
      "runId": "<string>",
      "workflowType": "<string>",
      "status": "running",
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.output.ai/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

workflowType
string

Filter by workflow type/name

catalog
string

Filter by catalog ID (scopes runs to a single worker's catalog/session)

limit
integer
default:100

Maximum number of runs to return

Required range: 1 <= x <= 1000

Response

List of workflow runs

runs
object[]
count
integer

Total number of runs returned