Naar de inhoud
GET /v1/calibration

Application rate (GPA)

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/spray-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}