Skip to content

Quick Start

mockd lets you create mock API endpoints that return the responses you define. Your mocks run at the edge, so they’re globally distributed and fast. No signup required.

Head to mockd.sh and click New Project. Give it a name — this becomes your subdomain.

You don’t need an account to get started. You can sign up later to save your work.

Inside your project, click New Endpoint. Configure:

  • Method — GET, POST, PUT, DELETE, etc.
  • Path — the URL path your mock will respond on (e.g. /api/users)
  • Status Code — 200, 404, 500, etc.
  • Response Body — the JSON (or other content) to return

Your endpoint is live immediately. Send a request to it:

Terminal window
curl https://<your-project>.mockd.sh/api/users

The response body you configured is returned, and the request appears in the Request Log in real time.