action spoonacular_visualize_recipe_ingredients_by_id { label: "Ingredients by ID Widget" description: "Visualize a recipe's ingredient list." provider: spoonacular method: GET path: "/recipes/{id}/ingredientWidget" encoding: json input: { type: "object" properties: { id: { type: "number" } measure: { type: "string" enum: ["us", "metric"] } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }