From SCALE Engine
Defines RESTful API conventions including endpoint naming, HTTP methods, response format, status codes, and security practices.
npx claudepluginhub hongmaple0820/scale-engineThis skill uses the workspace's default tool permissions.
Consistent, intuitive interfaces.
Designs consistent RESTful APIs covering conventions, HTTP methods, naming, versioning strategies, response formats, status codes, error handling, and pagination patterns.
Designs RESTful APIs with resource naming, HTTP methods, status codes, JSON response formats, pagination, and query parameters. Use when building new APIs or establishing conventions.
Guides RESTful API design and implementation: resource naming, HTTP methods, URL patterns, error responses, versioning, and core principles.
Share bugs, ideas, or general feedback.
Consistent, intuitive interfaces.
| Method | Purpose |
|---|---|
| GET | Retrieve |
| POST | Create |
| PUT | Replace |
| PATCH | Update |
| DELETE | Remove |
{
"success": boolean,
"data": object | null,
"error": string | null,
"meta": { total, page, limit }
}
| Code | Meaning |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not found |
| 500 | Server error |