/v1/ibu
Hop bitterness (IBU)
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/brewing-api/v1/ibu" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/brewing-api/v1/ibu", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/brewing-api/v1/ibu");
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/brewing-api/v1/ibu",
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": {
"ibu": 16.1465,
"note": "Tinseth IBU = (alpha-acid mg/L) × utilization, where utilization rises with boil time and falls with wort gravity.",
"inputs": {
"og": 1.05,
"volume_l": 20,
"weight_g": 28,
"boil_time_min": 60,
"alpha_acid_pct": 5
},
"utilization": 0.230664,
"alpha_acid_mg_l": 70
},
"meta": {
"timestamp": "2026-06-05T03:09:01.942Z",
"request_id": "67ef10d9-5abd-4548-8695-913f2768194f"
},
"status": "ok",
"message": "IBU bitterness",
"success": true
}