/v1/distillery
Distillery flavour profile
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}