Wijnpairing-intelligentie
voor Jouw Platform
Describe or photograph what is on the plate, or start with the bottle you already have. SommelierX compares structured taste profiles and shows what works — and why.
Describe or photograph what is on the plate, or start with the bottle you already have. SommelierX compares structured taste profiles and shows what works — and why.
Vier stappen van aanmelding tot je eerste pairing-resultaat.
Meld je aan op business.sommelierx.com. Je gratis API key is binnen seconden klaar. Geen creditcard nodig.
Stuur een gerechtnaam, ingredienten of een foto naar ons pairing-endpoint. We accepteren JSON, multipart of platte tekst.
Ontvang gerangschikte wijnaanbevelingen met matchscores, Wine DNA-profielen, proefnotities en pairing-uitleg.
Toon pairing-resultaten in je app met onze kant-en-klare UI-componenten, of bouw je eigen ervaring met ruwe data.
Alles wat je nodig hebt om wijn-intelligentie in je product te integreren.
Stuur elk gerecht en ontvang gerangschikte wijnaanbevelingen met matchscores van 0-100. Aangedreven door ons eigen Wine DNA-algoritme, in 17 jaar opgebouwd met wetenschappers en professionele sommeliers.
Werk met alle 19 wijndimensies en de 17 dimensies van een gerecht. Visualiseer waarom een pairing werkt met radar charts, staafdiagrammen of je eigen visualisatie.
Stuur een foto van elk gerecht of wijnlabel. Onze AI identificeert het gerecht/de wijn en retourneert automatisch pairingsuggesties. Aangedreven door multimodale visie-modellen.
Begin met een wijn en vind de perfecte gerechten. Ideaal voor wijnwinkels, restaurants die menu's samenstellen, of apps die gebruikers helpen koken bij een specifieke fles.
Nederlands en Engels zijn nu beschikbaar. De API gebruikt locale-codes en is ontworpen om nieuwe ondersteunde talen toe te voegen zonder een nieuw integratiecontract.
Verbind SommelierX met elke AI-agent via onze Model Context Protocol server. Claude, GPT en andere AI-assistenten kunnen wijnpairings native opvragen.
Volledige OpenAPI 3.1.0 specificatie beschikbaar. Genereer automatisch client SDKs in elke taal. Interactieve documentatie via Scalar UI.
Volg API-gebruik, populaire queries, responstijden en foutpercentages in je developer dashboard. Stel meldingen in voor quota-drempels.
API-key-authenticatie, rate limiting, configureerbare CORS en uitsluitend HTTPS, met gedocumenteerde beveiligingscontroles voor productie-integraties.
Krijg je eerste wijnpairing in minder dan 5 minuten. Kopieer, plak, draai.
# Get wine pairings for a dish curl "https://api.sommelierx.com/api/v1/pairings" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "dish": "Pasta Carbonara", "locale": "en", "limit": 5 }' # Response includes ranked wines with DNA profiles: # { # "pairings": [ # { # "wine": "Chardonnay (Burgundy)", # "score": 94, # "reason": "The creamy texture pairs beautifully...", # "dna": { "body": 0.85, "acidity": 0.6, ... } # } # ] # }
// Install: npm install sommelierx import { SommelierX } from 'sommelierx'; const sx = new SommelierX({ apiKey: process.env.SOMMELIERX_API_KEY }); // Get wine pairings for a dish const result = await sx.pair({ dish: 'Grilled Salmon with Lemon', locale: 'en', limit: 5 }); // Access wine recommendations result.pairings.forEach(p => { console.log(`${p.wine} - Score: ${p.score}`); console.log(` Reason: ${p.reason}`); console.log(` DNA:${JSON.stringify(p.dna)}`); }); // Reverse pairing: find dishes for a wine const dishes = await sx.reversePair({ wine: 'Barolo', limit: 10 });
# Install: pip install sommelierx import sommelierx client = sommelierx.Client( api_key="YOUR_API_KEY" ) # Get wine pairings for a dish result = client.pair( dish="Beef Bourguignon", locale="en", limit=5 ) # Access wine recommendations for pairing in result.pairings: print(f"{pairing.wine} - Score: {pairing.score}") print(f" Reason: {pairing.reason}") print(f" DNA: {pairing.dna}") # Photo recognition + pairing with open("dish.jpg", "rb") as f: photo_result = client.pair_from_photo( image=f, locale="en" )
Begin gratis. Schaal mee met je groei. Geen verrassingen.
Alle plannen bevatten HTTPS, API key auth en rate limiting. Meer calls nodig? Neem contact op.
Drie manieren waarop teams de SommelierX-intelligentie kunnen inzetten.
Stop staring at wine lists. Stop Googling “what wine with salmon.” Let SommelierX handle it.