Skip to main content
GET
/
workflows
/
runs
/
{run_id}
/
live_status
Get Workflow Run (Live Status)
curl --request GET \
  --url https://api.sixtyfour.ai/workflows/runs/{run_id}/live_status
{
  "run_id": "<string>",
  "workflow_id": "<string>",
  "overall_status": "<string>",
  "last_updated": "<string>",
  "current_block": "<string>",
  "current_block_sequence": 123,
  "total_blocks": 0,
  "completed_blocks": 0,
  "started_at": "<string>",
  "completed_at": "<string>",
  "blocks": [],
  "overall_progress_percentage": 0,
  "estimation_blocked_by": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.sixtyfour.ai/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-api-key
string | null

Path Parameters

run_id
string<uuid>
required

Response

Successful Response

Live status response for a single workflow run.

run_id
string
required

Workflow run identifier.

workflow_id
string
required

Workflow identifier.

overall_status
string
required

Overall run status: queued, running, completed, or failed.

last_updated
string
required

Timestamp of the last status update.

current_block
string | null

Name of the block currently executing.

current_block_sequence
integer | null

Sequence number of the block currently executing.

total_blocks
integer
default:0

Total number of blocks in the workflow.

completed_blocks
integer
default:0

Number of blocks that have finished.

started_at
string | null

Timestamp when execution started.

completed_at
string | null

Timestamp when execution finished.

blocks
BlockLiveStatus · object[]

Live status for each block in the run.

overall_progress_percentage
number
default:0

Overall run progress (0-100).

estimation_blocked_by
string | null

Block name preventing a full progress estimate, if any.