/v1/oxygen
Dissolved-oxygen demand
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}