Skip to main content
GET
Get execution

Authorizations

x-api-key
string
header
required

API key authentication. Get your key from Settings → API Keys.

Path Parameters

workflowId
string<uuid>
required

Workflow ID

executionId
string<uuid>
required

Execution ID

Response

Execution details

Detailed workflow execution information. When status is initial or processing, includes retry_after_seconds as a polling hint.

id
string<uuid>
required

Unique execution identifier

workflow_id
string<uuid>
required

ID of the workflow being executed

status
enum<string>
required

Current execution status

Available options:
initial,
processing,
human_in_the_loop,
finished,
error
created_at
string<date-time>
required

Timestamp when the execution was created

results
object[] | null
required

Output files from the workflow's last step. Null if execution is not finished.

url
string<uri>

URL to view the execution in the Felix UI

retry_after_seconds
number

Suggested polling interval in seconds. Present when execution is not yet finished (status is initial or processing).