Create unique webhook endpoints in one click. Capture, inspect, and debug HTTP requests in real-time. No signup required.
Your webhook is ready!
Send any HTTP request to:
Inspect captured requests:
Create unique webhook URLs in milliseconds. No signup, no setup. Just click and start receiving requests.
See every detail: headers, body, query params, method, IP, content type. Debug webhook integrations with ease.
Configure what your endpoint returns — status code, headers, body. Test how your app handles different responses.
Forward captured requests to your local dev server. Like a tunnel, but simpler. Perfect for testing webhooks locally.
Full REST API for creating hooks, retrieving requests, and configuring responses. Automate your testing workflows.
No browser extensions, no CLI tools, no Docker. Just HTTP. Works with curl, Postman, or any HTTP client.
Base URL: http://69.62.106.38:3101
/api/hooks — Create a new webhook endpoint
curl -X POST http://69.62.106.38:3101/api/hooks
# Response:
{
"id": "a1b2c3d4e5f6g7h8",
"url": "http://69.62.106.38:3101/hook/a1b2c3d4e5f6g7h8",
"inspectUrl": "http://69.62.106.38:3101/inspect/a1b2c3d4e5f6g7h8",
"limits": { "maxRequests": 50, "retentionHours": 24 }
}/hook/:hookId — Send requests to your webhook (any HTTP method)
curl -X POST http://69.62.106.38:3101/hook/YOUR_HOOK_ID \
-H "Content-Type: application/json" \
-d '{"event":"payment.completed","amount":49.99}'/api/hooks/:hookId — Retrieve captured requests
curl http://69.62.106.38:3101/api/hooks/YOUR_HOOK_ID
# Returns hook details + all captured requests with headers, body, etc./api/hooks/:hookId — Configure custom responses (Starter+)
curl -X PATCH http://69.62.106.38:3101/api/hooks/YOUR_HOOK_ID \
-H "X-API-Key: hf_your_key" \
-H "Content-Type: application/json" \
-d '{"responseStatus":201,"responseBody":"{\"created\":true}"}'/api/hooks/:hookId — Delete a webhook endpoint
curl -X DELETE http://69.62.106.38:3101/api/hooks/YOUR_HOOK_ID/api/keys — Generate a free API key
curl -X POST http://69.62.106.38:3101/api/keys \
-H "Content-Type: application/json" \
-d '{"email":"dev@example.com"}'