Lists all webhooks in your account. Use the returned IDs with webhook.delete to remove a webhook.
cURL
curl --request GET \ --url https://api.manus.ai/v2/webhook.list \ --header 'x-manus-api-key: <api-key>'
{ "ok": true, "request_id": "<string>", "data": [ { "id": "<string>", "url": "<string>", "status": "active", "created_at": 123 } ] }
Webhooks retrieved successfully.
Whether the request was successful.
true
Unique identifier for this API request.
Array of webhook objects.
Hide child attributes
Unique identifier for the webhook.
The endpoint URL receiving webhook POST notifications.
Webhook status. "active" — receiving notifications. "inactive" — paused.
active
inactive
Unix timestamp (seconds) when the webhook was created.
Was this page helpful?