Skip to main content
GET
/
agents
/
tasks
/
{task_id}
Get Task Status
curl --request GET \
  --url https://api.example.com/agents/tasks/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "<string>",
  "status": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "progress": 123,
  "result": {},
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string
required

Response

Successful Response

Response for task status.

task_id
string
required
status
string
required

pending, running, completed, failed

created_at
string
required
updated_at
string
required
progress
integer | null

Progress percentage (0-100)

result
Result · object
error
string | null