dominos_nutrition
Get calorie counts for any Domino's product configuration, including build-your-own pizzas with chosen size, base, and toppings, using live Cal-O-Meter data for a specific store.
Instructions
Get calorie information for one Domino's product configuration. Returns calorie information (Domino's own "Cal-O-Meter" data) for one product at one store. For a named/fixed menu item (a specialty pizza, bread, wing, pasta, sandwich, salad, drink, or dessert -- any item code from GET /dominos/menu), give only store_id and product_code; the item's default configuration is used. For a build-your-own pizza, also give size, base, and any topping codes -- calories are computed for that exact configuration, matching Domino's own live calculator. size and base must be given together; toppings requires both. Reads live, not from a cache -- each call creates and discards one anonymous cart server-side, so it is slower than this family's other endpoints. An unknown product code, or an invalid size/base/topping combination, returns an error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | No | Build-your-own crust code. Required together with size. | |
| size | No | Build-your-own size code, from /dominos/menu's variants. Required together with base. | |
| store_id | Yes | Domino's store id, from /dominos/store-locator | |
| toppings | No | Repeatable. Topping codes to add to a build-your-own pizza. Only used together with size+base. | |
| product_code | Yes | A product code from /dominos/menu's items[].code -- a named/fixed item, or a build-your-own base (e.g. S_PIZZA) |