Endpoints
Get a Workflow Run
This endpoint retrieves the status and results of a workflow run using its workflow_run_id
.
GET
/
v2
/
runs
/
{workflow_run_id}
This endpoint retrieves both the current status and output data of a workflow run. The status indicates whether the workflow is still running, has completed successfully, or encountered an error.
To monitor a workflow’s progress, the recommended pattern is to:
- Call this endpoint periodically (e.g., every 3-5 seconds)
- Check the status field in the response
- Once status shows “completed”, retrieve the workflow output from the response data
Authorizations
Path Parameters
The ID of the workflow run to retrieve.