Mockbin alternatives (mockbin.org is gone)

If a tutorial, test suite, or old Stack Overflow answer pointed you at mockbin.org and you're getting DNS errors: the site is gone. As of our last check (August 2026), neither mockbin.org nor mockbin.com resolves at all — not a redirect, not a sunset notice, just no DNS. Another entry in the free-dev-tool graveyard alongside the original requestb.in and Hookbin.

What happened to it

Mockbin was built at Mashape and later maintained by Kong. The code is still open source — the repo now lives as Kong/insomnia-mockbin — and the hosted functionality was folded into Insomnia's mock servers. So the capability survives, but the public no-signup mockbin.org endpoint that thousands of docs and test configs pointed at does not.

Mockbin did two different jobs

Pick your replacement based on which one you were using:

1. CatchHook (this site) — inspection + configurable responses

$ curl https://catchhook.catchhook.workers.dev/new        # instant bin, no signup

Trade-offs, honestly: one response config per bin — no path-based routing, so if you need GET /users and POST /orders to behave differently on one host, use a real mock server (below).

2. Self-host the original

Kong/insomnia-mockbin is Node + Redis and runs fine in Docker. You get exact Mockbin behavior — HAR-based mocks, the /request echo endpoint — at the cost of running it yourself and exposing it publicly if a webhook provider needs to reach it.

3. Insomnia mock servers

Kong's official successor. Cloud-hosted mocks tied to the Insomnia app and an account — good if your team already lives in Insomnia, heavier if you just wanted a throwaway URL.

4. Mock-first tools

Quick chooser

No signup needed. Or from your terminal: curl https://catchhook.catchhook.workers.dev/new

← All guides · Docs · CatchHook vs webhook.site