π‘ We check QuickMocker (and 36 other public mock/testing services) with a plain GET every 30 minutes β see the live status page.
QuickMocker (quickmocker.com) was a hosted API-mocking tool with a genuinely nice feature set: define fake endpoints in a UI, template responses with 100+ shortcodes, capture requests in a live log, import endpoints from an OpenAPI spec, even forward captured webhooks to your localhost.
The website no longer exists. As of August 2026, the domain doesn't resolve to anything β DNS has no address records for the site (only mail forwarding remains), www is NXDOMAIN, and the Wayback Machine's last capture of any kind is from December 2, 2024. If your project's mock endpoints lived on QuickMocker, they're dead, and so is the dashboard you'd need to export them:
curl https://quickmocker.com/
# β curl: (6) Could not resolve host: quickmocker.com
Here's the same job on Mockbird β no signup, free, 10,000 requests/day per project (QuickMocker's free plan was 100/day and 500/month, behind a registration form).
The shared demo project has live custom routes right now:
curl https://mockbird.mockbird.workers.dev/m/demo/health
# β {"status":"ok","service":"mockbird-demo","time":"2026-08-28Tβ¦"}
curl https://mockbird.mockbird.workers.dev/m/demo/config/theme
# β {"key":"theme","value":"β¦","fetchedAt":"β¦"} β /config/:key URL param
A QuickMocker "endpoint" β custom URL path, response body, status, headers, dynamic values β maps to a Mockbird custom route. One curl to create a project, one per endpoint:
# 1. create a project (no signup β the response includes your adminKey)
curl -X POST https://mockbird.mockbird.workers.dev/api/projects \
-H 'content-type: application/json' -d '{"name":"my api"}'
# 2. add an endpoint: URL params, templated JSON, any status/headers, ANY method
curl -X POST https://mockbird.mockbird.workers.dev/api/projects/PROJECT_ID/routes \
-H 'x-admin-key: YOUR_ADMIN_KEY' -H 'content-type: application/json' -d '{
"method": "ANY",
"path": "/orders/:id/state",
"status": 200,
"headers": {"x-mock-source": "mockbird"},
"body": "{\"orderId\":\"{{params.id}}\",\"state\":\"shipped\",\"checkedAt\":\"{{now}}\",\"trace\":\"{{uuid}}\"}"
}'
# 3. hit it β any method, any id
curl https://mockbird.mockbird.workers.dev/m/PROJECT_ID/orders/A17/state
# β {"orderId":"A17","state":"shipped","checkedAt":"2026-08-28T01:59:06Z",
# "trace":"b7274971-e356-4ef0-900d-74a974d27b97"}
Prefer a UI? The dashboard has the same add/edit/delete route builder, plus a data browser and the request inspector.
| QuickMocker feature | Mockbird equivalent |
|---|---|
| Project (endpoints collection) | Project β anonymous, no signup, claim later |
| Fake endpoint (path + response + status + headers) | Custom route β up to 20 per project |
| 100+ shortcodes (dynamic response values) | Template placeholders: {{query.x}} {{params.x}} {{body.x}} {{headers.x}} {{now}} {{uuid}} {{rand}} β and for bulk fake data, seeded CRUD resources (names, emails, prices, avatarsβ¦) |
| RegExp URL path | :param segments + trailing * catch-all (not full regex β see below) |
| Multiple HTTP methods per endpoint | "method": "ANY" (or one route per method) |
| Instant request log / interceptor | Request inspector β last 50 requests, live mode, headers + body captured |
| OpenAPI / Swagger endpoints import | POST /api/projects/import β full spec β live seeded mock (records included, not just endpoint prototypes) |
| Request proxy (forward to external URL) | Proxy fallback β mock some endpoints, pass the rest to your real API; add record mode to turn real responses into routes |
| Restrict by Authorization header | Protected mode β real signed JWTs, login/register endpoints included |
| Restrict by IP address | No equivalent |
| Local Forwarder (replay captured requests to localhost) | No equivalent β for localhost webhook forwarding use a tunnel (ngrok, cloudflared) or webhook.site's CLI |
| QuickMocker free (as of its last capture, Dec 2024) | Mockbird (free) | |
|---|---|---|
| Signup | Required before anything works | None β anonymous projects, claim later |
| Projects | 1 | 30 per IP per day (rolling) |
| Endpoints | 10 | 20 custom routes + unlimited CRUD resource endpoints per project |
| Requests | 100/day and 500/month | 10,000/day per project, no monthly cap |
| Request history | 50 records, kept 1 month | Last 50 per project, live inspector |
| Paid upgrade | $2.99β$5.99/month | There is no paid tier |
?mock_status=503, ?mock_delay=3000, ?mock_chaos=0.3, deterministic ?mock_seq=503,503,200 retry drills on any endpoint.Fair is fair: QuickMocker's Local Forwarder (replaying captured webhooks to a localhost URL with no public address) had no equal here β pair Mockbird's inspector with a tunnel if you need that. Its URL matching was full regular expressions, where Mockbird does named :params and a trailing catch-all only. It could restrict by IP, and its shortcode catalog for inline dynamic values was larger than our placeholder set (we cover bulk fake data with seeded resources instead). If any of those is the feature you actually needed, Beeceptor (50 requests/day free) has proxy + rules, and webhook.site covers capture-and-forward.
Also in this graveyard: Mocky (discontinued, self-signed cert), Apiary (Oracle shut it down Sep 2025), requestb.in, hookbin, ptsv2, httpstat.us (unreachable). Hosted tools die β pick ones you can eject from.
# one curl, no signup β a whole seeded e-commerce mock:
curl -X POST "https://mockbird.mockbird.workers.dev/api/projects" \
-H 'content-type: application/json' -d '{"name":"my api","preset":"ecommerce"}'
Or use the one-click dashboard. Docs: custom routes Β· request inspector Β· OpenAPI import.
This page is written by the Mockbird maker β bias disclosed. QuickMocker's disappearance verified live on Aug 28, 2026 (no DNS address records for the site, www NXDOMAIN, curl cannot resolve the host; the Wayback Machine's newest capture is Dec 2, 2024). Its feature set and free-plan limits above are taken from that last archived copy of quickmocker.com, so they describe the product as it was β if it ever comes back, re-check its pricing page.
Full API reference in the docs. More guides: Mocky alternative Β· Beeceptor alternative Β· mock any endpoint. Create your API β