/v1/sugar
Chaptalization & potential ABV
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/winemaking-api/v1/sugar" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/winemaking-api/v1/sugar", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/winemaking-api/v1/sugar");
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/winemaking-api/v1/sugar",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Chaptalization: sugar (g) = volume(L) × ΔpotentialABV × 16.83. Potential ABV = (SG−1)×131.25; ~17 g/L of sugar ferments to ~1% ABV.",
"inputs": {
"sg": 1.0875,
"brix": 21,
"volume": 20
},
"specific_gravity": 1.0875,
"sugar_to_add_grams": 512.24,
"target_potential_abv": 13,
"current_potential_abv": 11.478
},
"meta": {
"timestamp": "2026-06-06T07:14:13.089Z",
"request_id": "87409d35-f72b-4ecb-a65c-3944a60fcfca"
},
"status": "ok",
"message": "Chaptalization",
"success": true
}