Gets the public key for verifying webhook signatures. See the Webhook Security guide for verification examples.
cURL
curl --request GET \ --url https://api.manus.ai/v2/webhook.publicKey \ --header 'x-manus-api-key: <api-key>'
{ "ok": true, "request_id": "<string>", "public_key": "<string>", "algorithm": "RSA-SHA256" }
Public key retrieved successfully.
Whether the request was successful.
true
Unique identifier for this API request.
PEM-encoded RSA public key for verifying webhook signatures.
Signature algorithm. Always "RSA-SHA256".
"RSA-SHA256"
Was this page helpful?