Quick Start
Get started in three steps: create a webhook endpoint, send a test request, and inspect payloads and headers in the dashboard.
Updated Mar 2026
1
2
Send a webhook
Point your service at the endpoint URL. Or test it with curl:
curl -X POST https://go.webhooks.cc/w/<slug> \
-H "Content-Type: application/json" \
-d '{"event": "payment.success", "amount": 4999}'The receiver accepts any HTTP method, content type, and body.
3
View in the dashboard
Open the dashboard. Requests appear in real-time. Inspect headers, body, query parameters, and metadata. Copy as curl, replay to another URL, or export as JSON/CSV.
Next steps
Configure mock responses
Control what your endpoint returns to the sender.
Set up local tunneling
Forward webhooks to localhost.
Use the SDK
Integrate webhooks.cc into your test suite.