Get SKU details
GET/skus/:skuId
Returns the full detail for a single SKU version, including the complete recipe with ingredient quantities, production configuration (batch size, production time, operators required), allergen exclusions, nutritional information, and product images. This is the most comprehensive view of a product definition in Keychain OS.
Request
Response
- 200
- 401
- 404
Full SKU details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"id": "1042",
"name": "Roasted Garlic Hummus",
"version": 2,
"status": "active",
"description": null,
"batchSize": 500,
"batchUnit": "lbs",
"itemType": "finished_good",
"productionTimeMinutes": 360,
"operatorsRequired": 2,
"allergensExcluded": [
"peanuts",
"soy"
],
"nutritionalInfo": {},
"images": [],
"recipe": [
{
"ingredientId": "2087",
"ingredientName": "Organic Tahini",
"inventoryCode": "INV-000312",
"sequenceOrder": 1,
"quantity": 12.5,
"unit": "lbs",
"notes": null
}
]
}