Describe your API data in plain English and get instant mock REST endpoints

PressEnter ↵to generate instantly

Example Call
GET/api/v1/products
Headers{ "Auth": "Bearer..." }
Params?limit=10&sort=desc
Mock Endpoint

Your API is ready!

https://mock.apideck.com/gk8v2...
Live and accepting requests.
Data Schema
Product Object12 fields
  • idUUID
  • titleString
  • priceFloat
  • in_stockBoolean
Response Preview
{
  "status": 200,
  "message": "Success",
  "data": [
    {
      "id": "8f7b3a...",
      "title": "Coffee Mug",
      "price": 12.99
    }
  ]
}

Documentation

Create mock endpoint

Describe your data in plain English and generate an endpoint in one step.

Schema preview

Review generated schema output before integrating into your app.

Use endpoint instantly

Call the generated `/api/mock/{slug}` URL immediately from frontend or backend.

Examples

E-commerce

A list of 20 products with id, name, price, image and in_stock.

SaaS

A list of subscriptions with id, plan_name, status, renewal_date and monthly_price.