action spoonacular_search_site_content { label: "Search Site Content" description: "Search spoonacular's site content. You'll be able to find everything that you could also find using the search suggestions on spoonacular.com. This is a suggest API so you can send partial strings as queries." provider: spoonacular method: GET path: "/food/site/search" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" required: ["Articles", "Grocery Products", "Menu Items", "Recipes"] properties: { Articles: { type: "array" items: { required: ["image", "link", "name"] properties: { dataPoints: { type: "array" items: { properties: {} } } image: { type: "string" } link: { type: "string" } name: { type: "string" } } } } "Grocery Products": { type: "array" items: { required: ["image", "link", "name"] properties: { dataPoints: { type: "array" items: { required: ["key", "value"] properties: { key: { type: "string" } value: { type: "string" } } } } image: { type: "string" } link: { type: "string" } name: { type: "string" } } } } "Menu Items": { type: "array" items: { required: ["image", "link", "name"] properties: { dataPoints: { type: "array" items: { required: ["key", "value"] properties: { key: { type: "string" } value: { type: "string" } } } } image: { type: "string" } link: { type: "string" } name: { type: "string" } } } } Recipes: { type: "array" items: { required: ["image", "link", "name"] properties: { dataPoints: { type: "array" items: { required: ["key", "value"] properties: { key: { type: "string" } value: { type: "string" } } } } image: { type: "string" } link: { type: "string" } name: { type: "string" } } } } } } }