cURL
curl --request POST \ --url https://api.stover.app/v1/webhooks/receive/{webhook_key} \ --header 'Content-Type: application/json' \ --data '{}'
{ "success": true, "data": {} }
Receive external webhooks from third-party services.
curl -X POST https://api.stover.app/v1/webhooks/receive/wh_abc123 \ -H "Content-Type: application/json" \ -d '{ "event": "form_submitted", "name": "John Doe", "email": "[email protected]" }'
Your webhook key
Any JSON payload
Webhook received