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

Fish count from biomass density

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "Stock count = target biomass ÷ average fish weight, where biomass = density × volume. Safe density depends on species and system — flow-through and pond systems run lighter, a well-oxygenated RAS far heavier (trout 40–80 kg/m³). Stock to the HARVEST weight, not the fingerling weight, or the tank overloads as they grow.",
        "inputs": {
            "volume_m3": 10,
            "avg_weight_g": 250,
            "density_kg_m3": 30
        },
        "fish_count": 1200,
        "max_biomass_kg": 300
    },
    "meta": {
        "timestamp": "2026-06-06T15:30:42.827Z",
        "request_id": "1f509ebf-6dc2-4894-89f2-2039b8ceb2c3"
    },
    "status": "ok",
    "message": "Stocking",
    "success": true
}