Categories API
Categories API
Section titled “Categories API”Manage item categories.
List Categories
Section titled “List Categories”Get all categories with item counts.
Endpoint
Section titled “Endpoint”GET /api/categoriesResponse
Section titled “Response”{ "categories": [ { "id": "550e8400-e29b-41d4-a716-446655440000", "name": "Electronics", "color": "#3b82f6", "_count": { "items": 15 } }, { "id": "660e8400-e29b-41d4-a716-446655440001", "name": "Tools", "color": "#22c55e", "_count": { "items": 8 } } ]}Create Category
Section titled “Create Category”Add a new category.
Endpoint
Section titled “Endpoint”POST /api/categoriesRequest Body
Section titled “Request Body”{ "name": "Electronics", "color": "#3b82f6"}Fields
Section titled “Fields”| Field | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | - | Category name (unique) |
color | string | No | #6366f1 | Hex color code |
Response
Section titled “Response”{ "id": "550e8400-e29b-41d4-a716-446655440000", "name": "Electronics", "color": "#3b82f6"}Errors
Section titled “Errors”| Code | Message |
|---|---|
| 400 | Category already exists |
| 400 | Invalid color format |
Update Category
Section titled “Update Category”Modify an existing category.
Endpoint
Section titled “Endpoint”PUT /api/categories/[id]Request Body
Section titled “Request Body”{ "name": "Consumer Electronics", "color": "#2563eb"}Response
Section titled “Response”Returns the updated category.
Delete Category
Section titled “Delete Category”Remove a category.
Endpoint
Section titled “Endpoint”DELETE /api/categories/[id]Response
Section titled “Response”{ "success": true}Note: Items Not Deleted Deleting a category does not delete its items. Items will become uncategorized.
Color Format
Section titled “Color Format”Colors must be valid hex color codes:
- 6-digit:
#3b82f6 - 3-digit:
#38f(expanded to#3388ff)
Suggested Colors
Section titled “Suggested Colors”| Color | Hex | Use Case |
|---|---|---|
| Blue | #3b82f6 | Electronics, Technology |
| Green | #22c55e | Tools, Outdoor |
| Purple | #a855f7 | Media, Entertainment |
| Orange | #f97316 | Kitchen, Home |
| Red | #ef4444 | Important, Priority |
| Indigo | #6366f1 | Default |