Get Workflow Run Detail
Available for: Chatflow, Workflow apps.
Retrieve the current execution results of a workflow task based on the workflow execution ID.
Authorizations
API Key authentication. For all API requests, include your API Key in the Authorization HTTP Header, prefixed with Bearer. Example: Authorization: Bearer {API_KEY}. Strongly recommend storing your API Key on the server-side, not shared or stored on the client-side, to avoid possible API-Key leakage that can lead to serious consequences. Requests with a missing or invalid API key fail with HTTP 401 and error code unauthorized.
Path Parameters
Workflow run ID, can be obtained from the workflow execution response, streaming events, or message metadata.
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.