Endpoints
▾ Users
GET/api/v1/users
GET/users/:id
POST/users
PUT/users/:id
DEL/users/:id
▾ Products
GET/products
POST/products
PUT/products/:id
▾ Orders
GET/orders
POST/orders
GET
/api/v1/users
Description
List all users with optional pagination and filtering.
Headers + Add
Parameters + Add
Request Body
Response
{
"data": [
{ "id": 1, "name": "John Doe", "email": "john@example.com" },
{ "id": 2, "name": "Jane Smith", "email": "jane@example.com" }
],
"total": 42,
"page": 1,
"limit": 20
}
✦ AI Assistant
Describe your API and I'll generate the endpoints, schemas, and documentation for you.