v11

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-023710598.2 KB
Executions

List executions for a workflow (convenience nested route)

Same handler as GET /executions?workflowId={id}; offered as a nested route for clients that prefer it.

get/workflows/{id}/executions

Query parameters

beforestring

Cursor — return items immediately before this position (backward pagination).

afterstring

Cursor — return items immediately after this position (forward pagination).

limitinteger

Max items to return. Default 20; server-enforced ceiling applies.

Response

Page of executions for the workflow.

Example response

{
  "data": [
    {
      "id": "01JG2FE5MDVKBPHEG0PEYSDKAC",
      "workflowId": "01JG2FE5MDVKBPHEG0PEYSDKAC",
      "chainId": 11155111
    }
  ]
}