/v1/distillery
Distillery flavour profile
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/whisky-api/v1/distillery" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/whisky-api/v1/distillery", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/whisky-api/v1/distillery");
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/distillery",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"distillery": {
"region": "Islay",
"flavours": {
"body": 4,
"honey": 0,
"malty": 1,
"nutty": 1,
"smoky": 4,
"spicy": 1,
"winey": 2,
"floral": 0,
"fruity": 1,
"tobacco": 1,
"medicinal": 4,
"sweetness": 1
},
"postcode": "PA42 7DZ",
"distillery": "Lagavulin"
}
},
"meta": {
"timestamp": "2026-06-09T03:03:48.359Z",
"request_id": "dab6c00b-801e-4f80-95c4-08f9d891ad7f"
},
"status": "ok",
"message": "Distillery retrieved successfully",
"success": true
}