ReqBin: Simple HTTP Requests Debugger
A minimal “Request Bin” clone using Server-Sent Events for live request logging. Each session gets a unique URL that shows incoming HTTP requests in real time - great for debugging webhooks, scripts, or API callbacks.
Try It
Use it here: 👉 https://request-bin.worotyns.deno.net/ (moved from request-bin.deno.dev due to deno deploy end-of-life)
You’ll get a namespace URL to send requests to, and a live log stream in your browser.
Example:
curl -X POST https://request-bin.worotyns.deno.net/your-namespace \
-d '{"hello": "world"}' \
-H "content-type: application/json"
Watch it appear instantly.
SSE Log Server - a tiny, free way to inspect HTTP requests without third-party services.