Skip to main content
GET
/
workflows
/
run
/
{workflow_run_id}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "running",
  "inputs": "<string>",
  "outputs": {},
  "error": "<string>",
  "total_steps": 123,
  "total_tokens": 123,
  "created_at": 123,
  "finished_at": 123,
  "elapsed_time": 123
}

Authorizations

Authorization
string
header
required

API Key authentication.

Path Parameters

workflow_run_id
string<uuid>
required

Workflow Run ID, can be obtained from workflow execution response or streaming events.

Response

Successfully retrieved workflow run details.

id
string<uuid>
workflow_id
string<uuid>
status
enum<string>
Available options:
running,
succeeded,
failed,
stopped
inputs
string

JSON string of input content.

outputs
object | null

JSON object of output content.

error
string | null
total_steps
integer
total_tokens
integer
created_at
integer
finished_at
integer | null
elapsed_time
number | null