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

Query Parameters

workflowType
string

Filter by workflow type/name

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