curl --request GET \ --url 'http://localhost:2003/api/v1/task/task_123/run/status?runId=run_456' \ --header 'x-api-key: <your-api-key>'
{ "success": true, "data": { "status": "running", "detailedStatus": "processing_page", "toolCall": null, "liveStatus": "<live url>" } }
Get the status of a specific task run
The ID of the task
"task_123"
The ID of the run. If not provided, returns status of the most recent run.
"run_456"
Successful response
Indicates if the request was successful
true
Show child attributes
High-level status of the task run
scheduled
running
completed
error
"running"
Detailed status information about the current state
"processing_page"
Information about any tool call being waited on
null
Real-time status information about the current operation
"<live url>"