/v1/distillery
Distillery flavour profile
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}