/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}