Skip to main content
POST
/
v2
/
task.create
CreateTask
curl --request POST \
  --url https://api.manus.ai/v2/task.create \
  --header 'Content-Type: application/json' \
  --header 'x-manus-api-key: <api-key>' \
  --data '
{
  "message": {
    "content": [
      {
        "type": "text",
        "text": "<string>"
      }
    ],
    "connectors": [
      "<string>"
    ],
    "enable_skills": [
      "<string>"
    ],
    "force_skills": [
      "<string>"
    ]
  }
}
'
{
  "ok": true,
  "request_id": "<string>",
  "task_id": "<string>",
  "task_title": "<string>",
  "task_url": "<string>",
  "share_url": "<string>",
  "share_visibility": "private"
}
Questions or issues? Contact us at api-support@manus.ai.

Authorizations

x-manus-api-key
string
header
required

Body

application/json
message
object
required

The message to start the task with. Contains the prompt text, optional file attachments, and connector/skill configuration.

project_id
string

Project ID to associate this task with. The project's instruction will be automatically applied. Use project.list to get available project IDs.

locale
string

Locale for the task output language (e.g., "en", "zh-CN", "ja"). Defaults to the user's account locale setting.

interactive_mode
boolean

When enabled, the agent may pause and ask follow-up questions if the input is insufficient. When disabled (default), the agent proceeds with best-effort execution without asking.

hide_in_task_list
boolean

When true, the task will not appear in the Manus webapp task list. The task is still accessible via the task_url in the response. Useful for automated/background tasks.

share_visibility
enum<string>

Controls who can view the task. "private" (default) — only the task creator can view. "team" — all team members can view. "public" — anyone with the share_url can view without authentication.

Available options:
private,
team,
public

Response

Task created successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request, useful for debugging.

task_id
string

Unique identifier for the created task. Use this to track, update, or delete the task.

task_title
string

Auto-generated title for the task based on the input message.

task_url
string

URL to view the task in the Manus webapp (e.g., https://manus.im/app/{task_id}).

share_url
string

Publicly accessible URL for sharing. Only present when share_visibility is not "private".

share_visibility
enum<string>

The actual visibility state of the task.

Available options:
private,
team,
public