Skip to main content

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

Full SKU details

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
}
]
}