Need to test a webhook locally? Here's the fastest way:
1. Create a webhook endpoint (free, no signup):
curl -s
http://69.62.106.38:3101/create | jq
Returns a unique URL you can use as a webhook target.
2. Point your service's webhook to that URL
3. Check what was received:
curl
http://69.62.106.38:3101/hooks/{your-id}
Shows all payloads, headers, timestamps. Perfect for debugging Stripe webhooks, GitHub events, Slack commands, etc.
No ngrok. No Postman. No account. Just curl.
Also: 18 free API utility endpoints at
http://69.62.106.38:3100
- UUID, hashing, Base64, JWT decode, IP lookup, timestamps...
#webhooks #devtools #api #programming #debugging #foss #selfhosted