action spoonacular_search_all_food { label: "Search All Food" description: "Search all food content with one call. That includes recipes, grocery products, menu items, simple foods (ingredients), and food videos." provider: spoonacular method: GET path: "/food/search" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" required: ["limit", "offset", "query", "searchResults", "totalResults"] properties: { limit: { type: "integer" } offset: { type: "integer" } query: { type: "string" } searchResults: { type: "array" items: { type: "object" required: ["name", "totalResults"] properties: { name: { type: "string" } results: { type: "array" items: { type: "object" required: ["id", "name", "image", "link", "type", "relevance", "content"] properties: { content: { type: "string" } id: { type: "string" } image: { type: "string" } link: { type: "string" } name: { type: "string" } relevance: { type: "number" } type: { type: "string" } } } } totalResults: { type: "integer" } } } } totalResults: { type: "integer" } } } }