/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/seedrate-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/seedrate-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/seedrate-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/seedrate-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"notes": "US units (in, plants/acre, seeds/lb, lb/acre). population = 6,272,640/(row×seed); spacing = 6,272,640/(pop×row); rate = pop/germ/seeds-per-lb. For sprayer/product rates use a spray API; for fertiliser a fertilizer API.",
"service": "seedrate-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/population": "Plants per acre from row and seed spacing.",
"GET /v1/seed-spacing": "In-row seed spacing for a target population.",
"GET /v1/seeding-rate": "Pounds of seed per acre from population, seed size and germination."
},
"description": "Planting seed-rate maths: plant population from spacing, in-row spacing for a target, and seeding rate in lb/acre."
},
"meta": {
"timestamp": "2026-06-07T08:17:59.994Z",
"request_id": "a577cad8-b9b4-472a-8148-512f0d93027f"
},
"status": "ok",
"message": "Meta",
"success": true
}