/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/spray-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spray-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spray-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"notes": "US units (GPM, mph, in, gal, acres). GPA = 5940·GPM/(mph·spacing); acres/tank = tank/GPA; product/tank = acres/tank × rate. Calibrate with a real catch test. For fertiliser rates use a fertilizer API; for sprinkler/irrigation design an irrigation API.",
"service": "spray-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/product": "Product to add per tank for a label rate.",
"GET /v1/coverage": "Acres per tank and tank-loads for a field.",
"GET /v1/calibration": "Application rate GPA from nozzle flow, speed and spacing."
},
"description": "Agricultural sprayer maths: application rate (GPA) from calibration, field coverage and tank fills, and product per tank."
},
"meta": {
"timestamp": "2026-06-07T08:18:00.380Z",
"request_id": "ba34d208-0e46-49c1-9344-50cd2d43a586"
},
"status": "ok",
"message": "Meta",
"success": true
}