/v1/yield
Sap → syrup yield
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/maple-api/v1/yield" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/maple-api/v1/yield", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/maple-api/v1/yield");
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/yield",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Sugar balance: syrup = sap × (sap °Brix / syrup °Brix), finished at ~66.9 °Brix. Jones' Rule of 86 (86 ÷ sap °Brix) is the classic field estimate of sap-per-syrup; 2% sap is the famous ~43:1.",
"inputs": {
"sap_brix": 2,
"sap_volume": 100,
"syrup_brix": 66.9
},
"syrup_volume": 2.9895,
"rule_of_86_ratio": 43,
"sap_to_syrup_ratio": 33.45,
"water_to_evaporate": 97.0105
},
"meta": {
"timestamp": "2026-06-06T07:14:11.143Z",
"request_id": "0799afc1-fd52-49eb-949b-b31ff1eef5e6"
},
"status": "ok",
"message": "Sap to syrup",
"success": true
}