Skip to main content
GET
/
v2
/
agent.detail
cURL
curl --request GET \
  --url 'https://api.manus.ai/v2/agent.detail?agent_id=<string>' \
  --header 'x-manus-api-key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "agent": {
    "id": "<string>",
    "task_id": "<string>",
    "nickname": "<string>",
    "about": "<string>"
  }
}
Questions or issues? Contact us at api-support@manus.ai.
Talk to this agent: Use task.sendMessage with the agent’s task_id to send messages to its main task.View subtasks: Use task.list with scope=agent_subtask and this agent’s ID to list all subtasks.

Authorizations

x-manus-api-key
string
header
required

Query Parameters

agent_id
string
required

The unique identifier of the agent to retrieve.

Response

Agent retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

agent
object

The agent object with full details.