Skip to main content
GET
Get workflow execution

Authorizations

Authorization
string
header
required

API key passed as an Authorization Bearer token: Authorization: Bearer YOUR_API_KEY

Path Parameters

executionID
string
required

The workflow execution id.

Response

Workflow execution detail

execution_id
string
workflow_id
string
version_id
string

Workflow version the execution ran against.

bulk_id
string
status
string
Example:

"completed"

started_at
string<date-time>

RFC3339 timestamp; omitted until the run starts.

completed_at
string<date-time>

RFC3339 timestamp; omitted until the run finishes.

inputs
object
step_outputs
object
output
any

Free-form final output (object, array, or scalar).

workflow_output
object
error
string
error_cause
string
total_cost
number<double> | null

Summed cost of the run's model executions. Present only once the execution is terminal (completed/failed/cancelled); omitted while running or if unavailable.

Last modified on July 27, 2026