Skip to main content
POST
/
v2
/
webhook.create
CreateWebhook
curl --request POST \
  --url https://api.manus.ai/v2/webhook.create \
  --header 'Content-Type: application/json' \
  --header 'x-manus-api-key: <api-key>' \
  --data '
{
  "url": "<string>"
}
'
{
  "ok": true,
  "request_id": "<string>",
  "webhook": {
    "id": "<string>",
    "url": "<string>",
    "status": "active",
    "created_at": 123
  }
}
Questions or issues? Contact us at api-support@manus.ai.

Authorizations

x-manus-api-key
string
header
required

Body

application/json
url
string
required

The HTTPS endpoint URL that will receive POST webhook notifications. Must be publicly accessible and return a 2xx status code.

Response

Webhook created successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

webhook
object

The created webhook object.