action spoonacular_menu_item_nutrition_label_widget { label: "Menu Item Nutrition Label Widget" description: "Visualize a menu item's nutritional label information as HTML including CSS." provider: spoonacular method: GET path: "/food/menuItems/{id}/nutritionLabel" encoding: json input: { type: "object" properties: { id: { type: "number" } showIngredients: { type: "boolean" } showOptionalNutrients: { type: "boolean" } showZeroValues: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }