Skip to main content
GET
/
v2
/
task.detail
cURL
curl --request GET \
  --url 'https://api.manus.ai/v2/task.detail?task_id=<string>' \
  --header 'x-manus-api-key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "task": {
    "id": "<string>",
    "status": "running",
    "created_at": 123,
    "updated_at": 123,
    "task_type": "standard",
    "share_visibility": "private",
    "title": "<string>",
    "credit_usage": 123,
    "task_url": "<string>",
    "created_by_api_key": {
      "id": "<string>",
      "name": "<string>"
    }
  }
}
Questions or issues? Contact us at api-support@manus.ai.
Status only: This endpoint returns status and metadata. Use task.listMessages for the full conversation history and agent outputs.Shortcut: Use agent-default-main_task as task_id to check the IM agent’s main task.

Authorizations

x-manus-api-key
string
header
required

Query Parameters

task_id
string
required

The unique identifier of the task to retrieve. Supports the shortcut agent-default-main_task for the IM agent's main task.

Response

Task retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

task
object

The task object with current status and metadata.