action spoonacular_autocomplete_recipe_search { label: "Autocomplete Recipe Search" description: "Autocomplete a partial input to suggest possible recipe names." provider: spoonacular method: GET path: "/recipes/autocomplete" encoding: json output: { type: "array" items: { type: "object" required: ["id", "title", "imageType"] properties: { id: { type: "integer" } imageType: { type: "string" } title: { type: "string" } } } } }