action spoonacular_recipe_nutrition_label_image { label: "Recipe Nutrition Label Image" description: "Get a recipe's nutrition label as an image." provider: spoonacular method: GET path: "/recipes/{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 } }