Skip to main content
Retrieve the execution history for a specific workflow, including status, duration, and results.

Endpoint

GET /v1/accounts/:accountId/workflows/:id/executions

Authentication

Bearer token required.

Path Parameters

id
string
required
The workflow’s unique ID.

Query Parameters

limit
number
default:"50"
Number of executions to return. Maximum 100.
offset
number
default:"0"
Number of executions to skip.

Response

executions
WorkflowExecution[]
Array of execution log entries. See WorkflowExecution.
total
number
Total number of executions.
limit
number
The limit used.
offset
number
The offset used.

Example

curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/workflows/wf_abc123/executions?limit=10" \
  -H "Authorization: Bearer ${TOKEN}"
Response
{
  "type": "response",
  "success": true,
  "description": "Executions retrieved",
  "data": {
    "executions": [
      {
        "id": "exec_001",
        "workflow_id": "wf_abc123",
        "event": "participant.joined",
        "status": "success",
        "result": "{\"success\":true}",
        "duration_ms": 42,
        "created_at": "2026-05-29T10:06:00.000Z"
      },
      {
        "id": "exec_002",
        "workflow_id": "wf_abc123",
        "event": "participant.joined",
        "status": "failed",
        "result": "TypeError: Cannot read property 'name' of undefined",
        "duration_ms": 15,
        "created_at": "2026-05-29T10:08:00.000Z"
      }
    ],
    "total": 2,
    "limit": 10,
    "offset": 0
  },
  "error": null
}