action spoonacular_get_wine_pairing { label: "Wine Pairing" description: "Find a wine that goes well with a food. Food can be a dish name (\"steak\"), an ingredient name (\"salmon\"), or a cuisine (\"italian\")." provider: spoonacular method: GET path: "/food/wine/pairing" encoding: json input: { type: "object" properties: { food: { type: "string" } maxPrice: { type: "number" } } required: ["food"] additionalProperties: false } output: { type: "object" required: ["pairedWines", "pairingText", "productMatches"] properties: { pairedWines: { type: "array" items: { type: "string" } } pairingText: { type: "string" } productMatches: { type: "array" items: { type: "object" required: ["id", "title", "averageRating", "imageUrl", "link", "price", "ratingCount", "score"] properties: { averageRating: { type: "number" } description: { type: "object" } id: { type: "integer" } imageUrl: { type: "string" } link: { type: "string" } price: { type: "string" } ratingCount: { type: "integer" } score: { type: "number" } title: { type: "string" } } } } } } }