/v1/finish
Finishing temperature
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/maple-api/v1/finish" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/maple-api/v1/finish", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/maple-api/v1/finish");
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/maple-api/v1/finish",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Syrup is done at ~66.9 °Brix, which boils about 4 °C (7.1 °F) above water. Calibrate to your own water boiling point (it drops with altitude), then finish that many degrees higher.",
"inputs": {
"unit": "c",
"offset": 4,
"water_boiling": 100
},
"finish_brix": 66.9,
"syrup_density_sg": 1.337,
"syrup_g_per_liter": 1337,
"finish_temperature": 104
},
"meta": {
"timestamp": "2026-06-06T07:14:11.047Z",
"request_id": "d834b440-3b0e-4f0b-8671-03c67812befc"
},
"status": "ok",
"message": "Finishing temp",
"success": true
}