Naar de inhoud
GET /v1/similar

Distilleries similar in flavour

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/whisky-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/whisky-api/v1/similar" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/whisky-api/v1/similar", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/whisky-api/v1/similar");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/whisky-api/v1/similar",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 5,
        "region": "Islay",
        "similar": [
            {
                "region": "Islay",
                "distance": 2,
                "flavours": {
                    "body": 4,
                    "honey": 0,
                    "malty": 1,
                    "nutty": 1,
                    "smoky": 4,
                    "spicy": 0,
                    "winey": 1,
                    "floral": 0,
                    "fruity": 0,
                    "tobacco": 1,
                    "medicinal": 4,
                    "sweetness": 2
                },
                "postcode": "PA42 7DU",
                "distillery": "Laphroig",
                "similarity": 0.857
            },
            {
                "region": "Islay",
                "distance": 2.646,
                "flavours": {
                    "body": 4,
                    "honey": 0,
                    "malty": 2,
                    "nutty": 1,
                    "smoky": 4,
                    "spicy": 2,
                    "winey": 0,
                    "floral": 0,
                    "fruity": 1,
                    "tobacco": 0,
                    "medicinal": 4,
                    "sweetness": 1
                },
                "postcode": "PA42 7EB",
                "distillery": "Ardbeg",
                "similarity": 0.811
            },
            {
                "region": "Highlands",
                "distance": 3.162,
                "flavours": {
                    "body": 3,
                    "honey": 0,
                    "malty": 1,
                    "nutty": 1,
                    "smoky": 3,
                    "spicy": 2,
                    "winey": 0,
                    "floral": 0,
                    "fruity": 2,
                    "tobacco": 1,
                    "medicinal": 3,
                    "sweetness": 2
                },
                "postcode": "KW9 6LB",
                "distillery": "Clynelish",
                "similarity": 0.774
            },
            {
                "region": "Islay",
                "distance": 3.464,
                "flavours": {
                    "body": 3,
                    "honey": 0,
                    "malty": 1,
                    "nutty": 2,
                    "smoky": 4,
                    "spicy": 2,
                    "winey": 0,
                    "floral": 1,
                    "fruity": 1,
                    "tobacco": 1,
                    "medicinal": 2,
                    "sweetness": 1
                },
                "postcode": "PA46 7RL",
                "distillery": "Caol Ila",
                "similarity": 0.753
            },
            {
                "region": "Islands",
                "distance": 3.873,
                "flavours": {
                    "body": 4,
                    "honey": 1,
                    "malty": 2,
                    "nutty": 1,
                    "smoky": 3,
   
…