/v1/finish
Finishing temperature
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}