Skip to main content
GET
/
v1
/
executions
/
{id}
Get an Execution Status
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/executions/{id} \
  --header 'X-API-Key: <api-key>'
{
  "completedAt": "2026-03-17T14:35:12Z",
  "currentStepNumber": 1,
  "errorMessage": "<string>",
  "executionId": "f7e6d5c4-b3a2-1098-7654-321fedcba098",
  "startedAt": "2026-03-17T14:35:00Z",
  "status": "completed",
  "totalSteps": 1,
  "workflowId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Path Parameters

id
string<uuid>
required

Unique identifier of the execution.

Response

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

completedAt
string<date-time>

Timestamp when the execution finished. Null if still running.

Example:

"2026-03-17T14:35:12Z"

currentStepNumber
integer

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

Example:

1

errorMessage
string

Error message if the execution failed. Null on success.

executionId
string<uuid>

Unique identifier of the execution.

Example:

"f7e6d5c4-b3a2-1098-7654-321fedcba098"

startedAt
string<date-time>

Timestamp when the execution started.

Example:

"2026-03-17T14:35:00Z"

status
enum<string>

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

Available options:
pending,
running,
completed,
failed
Example:

"completed"

totalSteps
integer

Total number of steps in the workflow.

Example:

1

workflowId
string<uuid>

ID of the workflow being executed.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"