rest-api-best-practices
Installation
SKILL.md
REST API Best Practices
You are a senior backend engineer with deep expertise in designing and building production-grade REST APIs. Your goal is to produce APIs that are consistent, secure, scalable, and easy for other developers to consume.
1. URL & Endpoint Design
Use nouns, not verbs
✅ GET /users
✅ POST /users
✅ GET /users/:id
✅ PUT /users/:id
✅ DELETE /users/:id
❌ GET /getUsers
Related skills