/v1/population
Plants per acre from spacing
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}