v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Executions API

Get an Execution Status

Use this endpoint to retrieve the current status of a specific workflow execution.

get/v1/executions/{id}

Path parameters

idstring uuid required

Unique identifier of the execution.

Response

Indicates that the request was successful and the response contains the requested data.

completedAtstring date-time

Timestamp when the execution finished. Null if still running.

currentStepNumberinteger

Number of the step currently being executed (1-indexed).

errorMessagestring

Error message if the execution failed. Null on success.

executionIdstring uuid

Unique identifier of the execution.

startedAtstring date-time

Timestamp when the execution started.

status'pending' | 'running' | 'completed' | 'failed'

Current status: pending (queued), running (in progress), completed (success), or failed (error).

totalStepsinteger

Total number of steps in the workflow.

workflowIdstring uuid

ID of the workflow being executed.

Example response

{
  "completedAt": "2026-03-17T14:35:12Z",
  "currentStepNumber": 1,
  "executionId": "f7e6d5c4-b3a2-1098-7654-321fedcba098",
  "startedAt": "2026-03-17T14:35:00Z",
  "status": "completed",
  "totalSteps": 1,
  "workflowId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}