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