Check task status

GET
/api/statistics/{task_id}/status

Calling this endpoint retrieves the current processing status of the task with ID: task_id.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

task_id*string
Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/statistics/52921d5c-eb41-45d6-96a8-f2da5616c717/status"
{  "data": {    "task_id": "736fde4d-9029-4915-8189-01353d6982cb",    "video_url": "string",    "task_status": "pending",    "task_progress": 0,    "total_subtask_progress": 0,    "subtask_progress": {      "property1": 0.5,      "property2": 0.5    }  }}