Skip to main content
POST
/
v2
/
agent.update
UpdateAgent
curl --request POST \
  --url https://api.manus.ai/v2/agent.update \
  --header 'Content-Type: application/json' \
  --header 'x-manus-api-key: <x-manus-api-key>' \
  --data '
{
  "agent_id": "<string>"
}
'
{
  "ok": true,
  "request_id": "<string>",
  "agent": {
    "id": "<string>",
    "task_id": "<string>",
    "nickname": "<string>",
    "about": "<string>"
  }
}

Documentation Index

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

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

Questions or issues? Contact us at api-support@manus.ai.
Auth: API Key only — not available with OAuth tokens.

Headers

x-manus-api-key
string
required

API key for authentication. This endpoint does not support OAuth2 tokens. See Authentication.

Body

application/json
agent_id
string
required

The unique identifier of the agent to update.

nickname
string

New display name for the agent.

about
string

New description or bio for the agent.

Response

Agent updated successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

agent
object

The updated agent object.