/v1/calibration
Application rate (GPA)
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/spray-api/v1/calibration" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spray-api/v1/calibration", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spray-api/v1/calibration");
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/spray-api/v1/calibration",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Broadcast application rate GPA = 5940 × the per-nozzle flow (GPM) ÷ (ground speed in mph × nozzle spacing in inches); 5940 converts the units for a full-coverage boom. So a 0.4 GPM nozzle at 5 mph on 20-inch spacing lays down about 24 gallons per acre. Drive faster or space the nozzles wider and the rate drops — recheck the real nozzle flow with a catch test, since worn tips over-apply.",
"inputs": {
"speed_mph": 5,
"nozzle_flow_gpm": 0.4,
"nozzle_spacing_in": 20
},
"application_rate_gpa": 23.76
},
"meta": {
"timestamp": "2026-06-07T08:18:00.110Z",
"request_id": "f156d588-c543-42ad-9445-dc83b75fb3dd"
},
"status": "ok",
"message": "Calibration",
"success": true
}