Skip to main content
POST
/
v1
/
webhooks
/
receive
/
{webhook_key}
Receive Webhook
curl --request POST \
  --url https://api.stover.app/v1/webhooks/receive/{webhook_key} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "success": true,
  "data": {}
}
This is a public endpoint. No authentication required.

Setup

  1. Go to Settings > Webhooks > Incoming in your dashboard
  2. Create a new webhook and copy the URL
  3. Configure your external service to send data to that URL

Example

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]"
  }'

Integrations

Works with Zapier, Make, n8n, and any service that can send HTTP POST requests.

Path Parameters

webhook_key
string
required

Your webhook key

Body

application/json

Any JSON payload

Response

Webhook received

success
boolean
data
object