Getting Started
Create your first webhook endpoint and start capturing requests in under 30 seconds.
Create an Endpoint
Visit hooksense.com and click Create Endpoint. You'll get a unique webhook URL — no signup required.
https://hooksense.com/w/your-slug
Send a Webhook
Point your webhook provider (Stripe, GitHub, Shopify, etc.) to your HookSense URL. Or test with cURL:
curl -X POST https://hooksense.com/w/YOUR_SLUG \
-H "Content-Type: application/json" \
-d '{"event": "test", "data": {"id": 123}}'
Inspect
Requests appear in real-time via WebSocket. View full HTTP details:
- HTTP method and headers
- Request body with syntax highlighting
- Query parameters
- Source IP, content type, payload size
- Auto-detected provider (Stripe, GitHub, Shopify, etc.)
What's Next
- Forward webhooks to localhost with the CLI
- Replay requests to test your handler
- Verify signatures with HMAC
- Monitor health with the dashboard