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
The workflow’s unique ID.
Query Parameters
Number of executions to return. Maximum 100.
Number of executions to skip.
Response
Total number of executions.
Example
curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/workflows/wf_abc123/executions?limit=10" \
-H "Authorization: Bearer ${TOKEN}"
{
"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
}