Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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