/v1/oxygen
Dissolved-oxygen demand
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/aquaculture-api/v1/oxygen" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aquaculture-api/v1/oxygen", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aquaculture-api/v1/oxygen");
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/oxygen",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Oxygen demand = biomass × the per-kg consumption rate, which rises with temperature, feeding and stress (≈200–500 mg O₂ per kg per hour for many farmed fish). Your aeration or oxygenation must meet this plus a margin, and keep dissolved oxygen above ~5–6 mg/L — oxygen, not space, is usually what caps stocking density.",
"inputs": {
"biomass_kg": 300,
"consumption_mg_kg_hr": 300
},
"o2_demand_g_hr": 90,
"o2_demand_g_day": 2160,
"o2_demand_mg_hr": 90000
},
"meta": {
"timestamp": "2026-06-06T15:30:42.740Z",
"request_id": "4fb2f8a0-c8f0-46ef-bbfb-3ef060ab4442"
},
"status": "ok",
"message": "Oxygen demand",
"success": true
}