Overview
The Execution Detail endpoint returns the complete trace of a single workflow execution, including every step that ran, its inputs, outputs, duration, and any errors encountered. Use this to debug failures, verify output data, and understand execution flow.Authentication
Requires a valid API key. No special permission scope is needed beyond a valid key.Key Features
- Step-Level Detail: Inputs, outputs, and timing for every step
- Error Tracing: Pinpoint exactly which step failed and why
- Full Execution Context: Trigger data, step outputs, and final result
- No Credit Cost: This endpoint is free to use
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The unique workflow ID |
runId | string | The unique execution run ID |
Example Response
Response Fields
Execution
| Field | Type | Description |
|---|---|---|
id | string | Execution log identifier |
run_id | string | Unique execution identifier |
workflow_id | string | Parent workflow identifier |
status | string | Execution status: running, completed, or failed |
started_at | string | ISO 8601 timestamp when the execution started |
ended_at | string | null | ISO 8601 timestamp when the execution finished |
duration_ms | integer | null | Total execution duration in milliseconds |
event_name | string | Trigger event name used for the run |
created | string | ISO 8601 timestamp when the log row was created |
column_config | array | null | Optional table-column mappings applied to step outputs |
steps | array | Ordered list of step execution details |
error | string | null | Top-level error message if the execution failed |
Step Detail
Each step in thesteps array includes:
| Field | Type | Description |
|---|---|---|
step_id | string | Workflow step identifier |
step_name | string | null | Human-readable step name |
operation | string | Action kind identifier |
status | string | Step status: pending, running, completed, failed, or skipped |
started_at | string | ISO 8601 timestamp when the step started |
ended_at | string | null | ISO 8601 timestamp when the step finished |
duration_ms | integer | null | Step duration in milliseconds |
input | object | Resolved input values passed to the action |
output | object | null | Output values produced by the action |
mapped_output | object | null | Optional flattened values produced from column_config mappings |
error | string | object | null | Error details if the step failed |
Credit Usage
This endpoint is free and does not consume credits.Related Endpoints
- List Workflow Executions to see all executions for a workflow
- List Workflow Actions to understand the actions used in steps