Common API Design Standards
Priority: P1 (OPERATIONAL)
π§ HTTP Verb Semantics
GETread-only, idempotent β never mutates state.POSTcreate or trigger;PUTfull replace;PATCHpartial update;DELETEremove.- Non-CRUD actions as sub-resources:
POST /orders/:id/cancel.
π‘ Status Code Correctness
200success;201created (addLocationheader);204no body.400validation (withdetails[]);401unauthenticated;403unauthorized;404not found.409conflict;422business rule violation;429rate limit (addRetry-After);500unhandled.
π¦ URL Design Rules
- Lowercase, kebab-case:
/user-profiles, not/UserProfilesor/user_profiles. - Plural nouns:
/orders,/products. Not/order,/getProducts. - No verbs in paths (except action sub-resources):
/orders/:id/cancelβ ,/cancelOrderβ. - Hierarchy: Use nesting only up to 2 levels:
/users/:id/ordersβ ,/users/:id/orders/:orderId/items/:itemIdβ.
π’ API Versioning
- Strategy: URL path versioning default:
/v1/users,/v2/users. - Header versioning (
Api-Version: 2) acceptable for internal APIs. - Never mix versions in same controller β each version gets its own route module.
- Support prev major β₯ 6 months after new release.
- Deprecation:
Deprecation: true+Sunset: <date>headers when version will be retired.
π Pagination
- Prefer cursor-based (
cursor+limit) for large/live datasets; offset only for small static ones. - Default
limit: 20, max100. Reject requests exceeding max. - Response envelope:
{ data: [], pagination: { nextCursor, hasNextPage } }.
π OpenAPI Contract
- Generate from code annotations β not hand-written YAML.
- Every API needs OpenAPI 3.1 spec.
- Include: request/response schemas, error shapes, auth requirements, examples.
- Review spec in PR β breaking changes need version bump.
π API Security Baseline
- Require auth on all routes by default; use
@Public()or equivalent opt-out. - Validate and sanitize all query params, path params, and request bodies.
- Set
Content-Type: application/jsonexplicitly. Reject unexpected content types. - Include
X-Content-Type-Options: nosniffandX-Frame-Options: DENYheaders.
Anti-Patterns
- No
GETmutations: Search engines and CDNs cache GET β mutating state catastrophic. - No 200 for errors:
{ "success": false, "data": null }with HTTP 200 breaks monitoring. - No deeply nested URLs: Hard to document, version, and cache.
- No breaking changes without versioning: Removing/renaming fields in-place breaks consumers silently.