action spoonacular_product_nutrition_label_image { label: "Product Nutrition Label Image" description: "Get a product's nutrition label as an image." provider: spoonacular method: GET path: "/food/products/{id}/nutritionLabel.png" 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 } }