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