/v1/finish
Finishing temperature
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}