action spoonacular_get_ingredient_substitutes_by_id { label: "Get Ingredient Substitutes by ID" description: "Search for substitutes for a given ingredient." provider: spoonacular method: GET path: "/food/ingredients/{id}/substitutes" encoding: json input: { type: "object" properties: { id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["ingredient", "message", "substitutes"] properties: { ingredient: { type: "string" } message: { type: "string" } substitutes: { type: "array" items: { type: "string" } } } } }