action spoonacular_autocomplete_product_search { label: "Autocomplete Product Search" description: "Generate suggestions for grocery products based on a (partial) query. The matches will be found by looking in the title only." provider: spoonacular method: GET path: "/food/products/suggest" encoding: json input: { type: "object" properties: { number: { type: "integer" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" required: ["results"] properties: { results: { type: "array" items: { type: "object" required: ["id", "title"] properties: { id: { type: "integer" } title: { type: "string" } } } } } } }