Ir al contenido
GET /v1/calibration

Application rate (GPA)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/spray-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}