Checkout flow
POST cart items, GET order status, PATCH payment state โ stateful collection on /orders.
curl -X POST "$BASE/orders" -H "Content-Type: application/json" -d '{"total":42,"status":"pending"}'
Starter patterns for contract-accurate fake backends.
POST cart items, GET order status, PATCH payment state โ stateful collection on /orders.
curl -X POST "$BASE/orders" -H "Content-Type: application/json" -d '{"total":42,"status":"pending"}'
GET /me returns schema-shaped user profile; PATCH updates stored item by id.
curl "$BASE/users/42"
GET collection honors ?count= when seeding an empty store; Pro unlocks larger stores.
curl "$BASE/products?count=20"
Import your own OpenAPI in the app under Mock APIs โ Import OpenAPI project.