Loading...
Loading...
Design RESTful APIs with clear endpoints, proper HTTP methods, and consistent response formats. Use when planning or building APIs.
npx skill4agent add jason-qweb/agent-skills api-designerGET /api/v1/users # List users
POST /api/v1/users # Create user
GET /api/v1/users/:id # Get user
PUT /api/v1/users/:id # Update user
DELETE /api/v1/users/:id # Delete user{
"data": { ... },
"meta": { "page": 1, "total": 100 }
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Email is required",
"details": [{ "field": "email", "reason": "required" }]
}
}/users/user/user-profiles?status=active&sort=-created_at