Rest api design
29 free, verified agents, skills & packs for Claude Code - install with 'npx vanara install <name>'. Apache-2.0. From the Vanara catalog (206 items).
npx -y skills add vanara-agents/skills --skill rest-api-designAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 22 days oldThe repository was created 22 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Conventions for designing clean, consistent, evolvable REST APIs — resource modeling, HTTP semantics, status codes, pagination, filtering, error envelopes, versioning, idempotency, and security. A deep reference with worked examples and runnable checks.
SKILL.md
6.7 KB, as published. Nobody here has run it
REST API Design
A good REST API is guessable: once a consumer learns one endpoint, they can predict the rest. This
skill is the deep reference for designing one — the principles, the decisions, the trade-offs, and the
mistakes to avoid. Heavy detail lives in references/; copy-paste material in examples/; a runnable
contract check in scripts/.
Mental model
Design the API around resources (nouns) and use HTTP verbs to act on them. The protocol already gives you a rich vocabulary — methods, status codes, headers, caching — so lean on it instead of inventing your own conventions on top.
| Concern | REST answer |
|---|---|
| What | a resource, named as a plural noun (/orders) |
| Action | the HTTP method (GET/POST/PUT/PATCH/DELETE) |
| Outcome | the status code (200/201/404/409…) |
| Shape | a consistent response envelope |
| Change | an explicit versioning strategy |
1. Resource modeling
- Name collections as plural nouns:
/users,/orders. Never verbs in the path (/getUsersis wrong — the verb isGET). - Nest to show ownership, but only one level deep:
/users/{id}/ordersis fine;/users/{id}/orders/{id}/items/{id}/...is a smell — link instead. - Model real-world actions that aren't CRUD as sub-resources or controller endpoints:
POST /orders/{id}/refundsrather thanPOST /refundOrder. - Keep identifiers stable and opaque to clients; don't leak DB internals (prefer UUIDs/ULIDs over auto-increment IDs where enumeration is a risk).
2. HTTP method semantics
| Method | Use | Safe | Idempotent |
|---|---|---|---|
| GET | read | yes | yes |
| POST | create / non-idempotent action | no | no |
| PUT | full replace | no | yes |
| PATCH | partial update | no | no* |
| DELETE | remove | no | yes |
Respect these contracts — clients, proxies, and caches rely on them. A GET must never mutate state.
See references/status-codes.md for the full status-code decision guide.
3. Status codes
Return the accurate code; never 200 OK with an error body (it breaks every client's error handling).
201 Created Location: /orders/101 # after a successful POST
204 No Content # successful DELETE, no body
400 Bad Request # malformed/invalid input
401 Unauthorized # not authenticated 403 Forbidden # authenticated, not allowed
404 Not Found 409 Conflict 422 Unprocessable Entity 429 Too Many Requests
Full guidance and edge cases (404 vs 403 to avoid leaking existence, 409 vs 422) live in
references/status-codes.md.
4. The response envelope
Standardize one shape across every endpoint so clients parse uniformly. See
examples/error-envelope.json and validate any payload with scripts/check-envelope.mjs.
{
"data": [ { "id": 101, "status": "open" } ],
"meta": { "nextCursor": "eyJpZCI6MTIwfQ", "limit": 20 },
"error": null
}
On error, the same shape with data: null and a populated error (see §6).
5. Pagination, filtering, sorting
Every collection endpoint must paginate — an unbounded list is a latent outage. Prefer cursor pagination for large or frequently-changing data (offset pagination scans and skips rows, getting slower the deeper you go, and double-counts when rows are inserted mid-scan).
GET /v1/orders?status=open&sort=-created_at&limit=20&cursor=eyJpZCI6MTAwfQ
The full comparison, cursor encoding, and pitfalls are in references/pagination.md.
6. Error model
One error shape, everywhere. A machine-readable code, a human message, and optional field-level
details:
{ "data": null, "error": {
"code": "validation_failed",
"message": "The request was invalid.",
"details": [ { "field": "email", "issue": "must be a valid email" } ]
} }
Rules and the full catalogue of codes are in references/error-handling.md.
7. Versioning & evolution
APIs are forever once published. Version explicitly (/v1/... in the path is the most operationally
clear) and treat additive changes as backward-compatible; breaking changes require a new version.
Strategy and a deprecation playbook: references/versioning.md.
8. Idempotency, concurrency, security
- Idempotency: accept an
Idempotency-Keyheader onPOSTso client retries don't double-create (the server stores key → result and replays it). Essential for payments. - Concurrency: use
ETag+If-Matchfor optimistic locking on updates to prevent lost writes. - Security: authenticate every request, authorize every action server-side (guard against IDOR by
checking ownership, not just authentication), rate-limit (return
429+Retry-After), and validate all input. Pairs with thesecurity-auditoragent and theowasp-top10skill.
Common pitfalls (anti-patterns)
200 OKwith{"success": false}— breaks HTTP error handling; use real status codes.- Verbs in URLs (
/createUser) — the method is the verb. - Unbounded list endpoints — always paginate; a
/usersthat returns 2M rows is a DoS on yourself. - Inconsistent shapes — one endpoint returns an array, another an object; clients can't generalize.
- Leaking existence via 404-vs-403 to unauthorized users — be deliberate (see status-codes ref).
- Breaking changes without a version bump — renaming/removing a field silently breaks consumers.
When NOT to use REST
REST isn't always the right tool. Prefer GraphQL when clients need flexible, nested selections and you want to avoid over/under-fetching; prefer gRPC for low-latency internal service-to-service calls; prefer webhooks/event streams for server-push. REST shines for resource-oriented public HTTP APIs where cacheability and ubiquity matter.
Files in this package
references/status-codes.md— full status-code decision guide + edge casesreferences/pagination.md— cursor vs offset, encoding, pitfallsreferences/versioning.md— versioning strategies + deprecation playbookreferences/error-handling.md— error shape, codes, validation detailsexamples/orders-api.openapi.yaml— a complete OpenAPI snippetexamples/error-envelope.json— canonical success/error payloadsscripts/check-envelope.mjs— runnable Node check that a payload matches the envelope
Pairs with the api-designer agent, the api-documenter agent, and the webhook-design skill.