/v1/seed-spacing
Seed spacing for a target population
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/seed-spacing" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/seedrate-api/v1/seed-spacing", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/seedrate-api/v1/seed-spacing");
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/seed-spacing",
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": "The in-row seed spacing for a target population = 6,272,640 ÷ (target plants × row spacing). To plant 35,000 per acre in 30-inch rows you drop a seed about every 6 inches. This is the number you set on a planter's seed-rate drive or the singulating meter; check it with a seed-spacing/wheel test in the field, because skips and doubles move the real stand off the target.",
"inputs": {
"row_spacing_in": 30,
"target_population": 35000
},
"seed_spacing_in": 5.974
},
"meta": {
"timestamp": "2026-06-07T08:17:59.799Z",
"request_id": "6210641e-1d8e-4c3e-a420-eef834590f73"
},
"status": "ok",
"message": "Seed spacing",
"success": true
}