webhook-inspector
Generate a URL, point any webhook at it,
inspect the requests live in your browser.
Free. No signup. URLs expire after 7 days.
Click → unique URL generated → page redirects to live inspector.
Use cases
- · Test Stripe / GitHub / Slack webhooks without spinning up a server
- · Debug what a service POSTs (headers, body, method, IP)
- · Replace ngrok for one-off captures
- · Share a URL with a teammate to see traffic in real-time
Quick example
# 1. Click the button above. You get a URL like:
# https://hook.odessa-inspect.org/h/AbCdEf...
# 2. Use that URL anywhere webhooks are sent. Or curl it:
curl -X POST -d '{"hello":"world"}' \
https://hook.odessa-inspect.org/h/AbCdEf...
# 3. The browser tab shows the request, live.