Get recipes containing this item
GET/items/:itemId/recipes
Returns every SKU recipe that uses this item as an ingredient. Each entry shows the SKU name, the quantity of this item consumed per batch, and the unit. Use this for impact analysis — for example, to understand which products are affected if a raw material becomes unavailable or changes price.
Request
Response
- 200
- 401
- 404
Recipes containing this item
Unauthorized — missing or invalid API key
Resource not found
Response
{
"itemId": null,
"itemName": null,
"recipes": [
{
"skuId": "1042",
"skuName": "Roasted Garlic Hummus",
"quantity": 12.5,
"unit": "lbs"
}
]
}