Quick Start
Start capturing webhooks in under a minute. Three steps, no configuration.
1
Create an endpoint
Sign in and click New Endpoint in the dashboard. You get a unique URL like:
https://go.webhooks.cc/w/<slug>
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
- Set up local tunneling - forward webhooks to localhost
- Use the SDK - integrate webhooks.cc into your test suite