Skip to content

Get workflow run status

GET/v1/workflowRun/{runId}/status

Returns the current status of a workflow run.

Path ParametersExpand Collapse
runId: string

Unique identifier of the workflow run.

ReturnsExpand Collapse
WorkflowRunStatusResponse = object { status }
status: string

Current status of the workflow run (e.g. running, completed, failed).

Get workflow run status

curl https://api.lightfield.app/v1/workflowRun/$RUN_ID/status \
    -H 'Lightfield-Version: 2026-03-01'
{
  "status": "status"
}
Returns Examples
{
  "status": "status"
}