/v1/yield
Sap → syrup yield
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/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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}