action spoonacular_product_nutrition_label_widget { label: "Product Nutrition Label Widget" description: "Get a product's nutrition label as an HTML widget." provider: spoonacular method: GET path: "/food/products/{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 } }