List SKUs
GET/skus
Returns a paginated list of SKUs. Only the current (latest) version of each SKU is included. Use the filters to narrow results by name, status, or item type. Each entry contains summary-level attributes — retrieve a specific SKU for the full recipe, production steps, and nutritional data.
Request
Response
- 200
- 400
- 401
Paginated list of SKUs
Bad request — invalid parameters
Unauthorized — missing or invalid API key
Response
{
"data": [
{
"id": "1042",
"name": "Roasted Garlic Hummus",
"version": 2,
"status": "active",
"description": null,
"batchSize": 500,
"batchUnit": "lbs",
"itemType": "finished_good"
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}