All templates

Starters

Mock a REST CRUD API

A resource that actually remembers what you did to it.

4 routes · live immediately · no account needed

A stateful collection: POST creates a record, GET lists what exists, GET by id reads one back, PATCH merges changes, DELETE removes it. State lives in Redis for the life of the mock, so a create followed by a read returns the thing you just created rather than a fixed fixture. Point a form or a table at it and the whole create-edit-delete loop works before any backend does.

What you get

GET/usersstateful200 OK
POST/usersstateful201 Created
PATCH/usersstateful200 OK
DELETE/usersstateful200 OK

Good for

  • Build a CRUD screen end to end before the backend exists
  • Demo a working create/edit/delete flow to stakeholders
  • Prototype optimistic updates against a server that really changes