Μετάβαση στο περιεχόμενο
GET /v1/seed-spacing

Seed spacing for a target population

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/seedrate-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}