Skip to main content
GET
/
api
/
v1
/
tasks
/
status
/
{task_id}
Get Task Status
curl --request GET \
  --url http://localhost:8000/api/v1/tasks/status/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "<string>",
  "is_ready": true,
  "return_value": "<unknown>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

task_id
string
required

Response

Successful Response

The schema for task status response.

task_id
string
required
is_ready
boolean
required
return_value
unknown
error
string | null