Vai al contenuto
GET /v1/population

Plants per acre from spacing

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/seedrate-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/seedrate-api/v1/population" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/seedrate-api/v1/population", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/seedrate-api/v1/population");
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/population",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Plant population per acre = 6,272,640 ÷ (row spacing × in-row seed spacing), both in inches — the 6,272,640 is the square inches in an acre. So 30-inch rows with seeds 6 inches apart give about 34,800 plants per acre. Closer spacing raises the population (and competition); seed companies publish an optimum for each hybrid, so set the planter to land on it.",
        "inputs": {
            "row_spacing_in": 30,
            "seed_spacing_in": 6
        },
        "plants_per_acre": 34848,
        "plants_per_hectare": 86111
    },
    "meta": {
        "timestamp": "2026-06-07T08:17:59.701Z",
        "request_id": "b4981777-6a56-4b64-86bb-a46cd8613d6a"
    },
    "status": "ok",
    "message": "Plant population",
    "success": true
}