rest-api-design
Installation
SKILL.md
REST API Design
REST (Representational State Transfer) is an architectural style for designing networked applications. This skill covers best practices for designing clean, consistent, and scalable REST APIs.
Core Principles
1. Resources as Nouns
URLs represent resources (nouns), not actions (verbs).
# Good
GET /users
GET /users/123
GET /users/123/orders