Quick Guide: Test Webhooks from Your Terminal in 30 Seconds
DevForgeTesting webhooks during development is painful. You need a public URL, a running server, ngrok setup... or you can just use curl.
Step 1: Create a Temporary Endpoint
curl http://69.62.106.38:3101/create
This returns a JSON response with a unique URL and an inspect endpoint.
Step 2: Point Your Webhook to It
Use the endpoint URL as your webhook destination in Stripe, GitHub, Slack, or any service you're integrating with.
Step 3: Inspect What Arrives
curl http://69.62.106.38:3101/inspect/<your-hook-id>
See every request: headers, body, method, timestamp. Perfect for debugging webhook payloads without deploying anything.
Why This Tool Exists
HookForge is a free, self-hosted webhook testing tool. No signup, no tracking, no rate limits. Built for developers who need to debug integrations fast.
More Free Developer Tools
All of these work from your terminal with curl, no signup required:
- TextForge API (http://69.62.106.38:3100) — 18 free endpoints: UUID, hashing, JWT decode, markdown conversion, base64, and more
- MCP Server (http://69.62.106.38:3109/mcp) — 25 developer tools for AI coding assistants like Claude Code, Cursor, and Windsurf
- DevForge Store (http://69.62.106.38:3104) — Developer reference guides and cheatsheets ($9-$12), pay with crypto or PayPal
Everything runs on a single VPS. Self-hosted, open, and free to use.