Sign In
Sign Up
API design sketch
Outline resources, HTTP verbs, and a shared error envelope before you OpenAPI.
Resources (one path per line)
/users /users/{id} /orders
Verbs
GET
POST
PUT
PATCH
DELETE
Authentication
Bearer JWT in Authorization header
Pagination / filters
cursor: ?cursor=&limit=
Error model
JSON problem object: { "type", "title", "status", "detail", "instance" }
Build sketch