Products API
5 endpoints. All requests need an Authorization header — see Authentication. API keys additionally need the matching scope.
| Method | Path | Description |
|---|---|---|
GET |
/api/products/ |
List Products Query: search, is_active, category, limit, offset. |
POST |
/api/products/ |
Create Product Accepts a JSON body. |
GET |
/api/products/{product_id} |
Get Product |
PATCH |
/api/products/{product_id} |
Update Product Accepts a JSON body. |
DELETE |
/api/products/{product_id} |
Delete Product |
Try it
The full request/response schema for every endpoint is in the OpenAPI spec served by your own workspace.