v1

latestOpenAPI 3.1.02026-07-1711022.5 KB

Get Task Run Status

Get the status of a specific task run

get/task/{taskId}/run/status

Path parameters

taskIdstring required
Example:task_123

The ID of the task

Query parameters

runIdstring
Example:run_456

The ID of the run. If not provided, returns status of the most recent run.

Response

Successful response

successboolean

Indicates if the request was successful

Example response

{
  "success": true,
  "data": {
    "status": "running",
    "detailedStatus": "processing_page"
  }
}