Ir al contenido
GET /v1/distillery

Distillery flavour profile

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/whisky-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}