Simple mocking API

Mock the endpoint. Keep building.

Define routes, status codes, headers, JSON, and response delays. Give every developer a dependable API before the backend is ready.

REQUEST / RESPONSE200 OK
GET/api/mock/checkout
"status": "ready",
"items": 3,
"delay": 420
application/json420 ms simulated

THE WORKBENCH

A predictable API in three moves.

Configure only what the client needs. Mocky handles the route and serves the response from one stable URL.

  1. 01

    Name the route

    Choose the HTTP method and path your application expects.

    POST /orders/:id
  2. 02

    Shape the response

    Set headers, status, JSON body, and an optional network delay.

    201 · 800 ms
  3. 03

    Connect the client

    Copy the generated URL and continue building against it.

    copy endpoint ↗

CAPABILITIES

Small surface. Useful controls.

Methods
GET · POST · PUT · PATCH · DELETE · OPTIONS
Response
JSON body · headers · status code
Network
Configurable response delay
Routing
Nested and wildcard paths

READY WHEN YOU ARE

Your frontend does not need to wait.

Create account

Built for frontend, QA, and backend workflows.

Next.js · Supabase