Overview
The Workflow Executions endpoint returns the run history for a given workflow, including status, duration, and error information for each execution. Use this to monitor workflow health, debug failures, and track execution patterns over time.Authentication
Requires a valid API key. No special permission scope is needed beyond a valid key.Key Features
- Full Run History: Every execution attempt with status and timing
- Error Visibility: See error messages for failed runs
- Paginated: Handle workflows with many executions
- No Credit Cost: This endpoint is free to use
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The unique workflow ID |
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (minimum 1) |
page_size | integer | 20 | Results per page (1-100) |
Example Response
Response Fields
Each execution in theexecutions array includes:
| Field | Type | Description |
|---|---|---|
run_id | string | Unique execution identifier |
status | string | Execution status: running, completed, or failed |
started_at | string | ISO 8601 timestamp when the execution started |
completed_at | string | null | ISO 8601 timestamp when the execution finished (null if still running) |
duration | integer | null | Execution duration in milliseconds (null if still running) |
error | string | null | Error message if the execution failed |
Credit Usage
This endpoint is free and does not consume credits.Related Endpoints
- Get Execution Detail to see step-by-step execution logs
- List Workflow Actions to discover available workflow actions