action spoonacular_get_recipe_ingredients_by_id { label: "Ingredients by ID" description: "Get a recipe's ingredient list." provider: spoonacular method: GET path: "/recipes/{id}/ingredientWidget.json" encoding: json input: { type: "object" properties: { id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["ingredients"] properties: { ingredients: { type: "array" items: { type: "object" required: ["image", "name"] properties: { amount: { type: "object" required: ["metric", "us"] properties: { metric: { type: "object" required: ["unit", "value"] properties: { unit: { type: "string" } value: { type: "number" } } } us: { type: "object" required: ["unit", "value"] properties: { unit: { type: "string" } value: { type: "number" } } } } } image: { type: "string" } name: { type: "string" } } } } } } }