action spoonacular_autocomplete_ingredient_search { label: "Autocomplete Ingredient Search" description: "Autocomplete the entry of an ingredient." provider: spoonacular method: GET path: "/food/ingredients/autocomplete" encoding: json input: { type: "object" properties: { intolerances: { type: "string" } metaInformation: { type: "boolean" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["name", "image"] properties: { aisle: { type: "string" } id: { type: "integer" } image: { type: "string" } name: { type: "string" } possibleUnits: { type: "array" items: { type: "string" } } } } } }