action spoonacular_search_grocery_products { label: "Search Grocery Products" description: "Search packaged food products, such as frozen pizza or Greek yogurt." provider: spoonacular method: GET path: "/food/products/search" encoding: json input: { type: "object" properties: { addProductInformation: { type: "boolean" enum: [false, true] } maxCalories: { type: "number" } maxCarbs: { type: "number" } maxFat: { type: "number" } maxProtein: { type: "number" } minCalories: { type: "number" } minCarbs: { type: "number" } minFat: { type: "number" } minProtein: { type: "number" } } additionalProperties: false } output: { type: "object" required: ["number", "offset", "products", "totalProducts", "type"] properties: { number: { type: "integer" } offset: { type: "integer" } products: { type: "array" items: { type: "object" required: ["id", "title", "imageType"] properties: { id: { type: "integer" } imageType: { type: "string" } title: { type: "string" } } } } totalProducts: { type: "integer" } type: { type: "string" } } } }