Get Workflow Run Detail
Available for: Chatflow, Workflow apps.
Get a single workflow run’s status, inputs, outputs, and execution metrics.
Authorizations
Every request authenticates with an API key: Authorization: Bearer {API_KEY}. App endpoints take an app API key; knowledge endpoints take a knowledge base API key (Get Started).
Keep keys server-side; never embed them in client code. Requests with a missing or invalid key fail with HTTP 401 (unauthorized).
Path Parameters
Workflow run ID, from the response or streaming events of Run Workflow, or from message metadata in Chatflow apps.
Response
Successfully retrieved workflow run details.
Workflow run ID.
Workflow ID.
Workflow execution status. running for in-progress executions, succeeded when completed successfully, failed when execution encountered an error, stopped when manually halted, partial-succeeded when some nodes succeeded but others failed, paused when awaiting human input.
Input variables of the workflow run, returned as a raw JSON string that clients must parse (e.g., {"query": "..."}). May be null.
Output data from the workflow. An empty object until outputs are available.
Error message if the workflow failed.
Total number of workflow steps executed.
Total tokens consumed.
Unix timestamp of when the workflow run was created.
Unix timestamp of when the workflow run finished.
Total time elapsed in seconds.