/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/aquaculture-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aquaculture-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aquaculture-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"notes": "SI units (m³, kg, g). biomass = density × volume; ration = biomass × rate%; feed-for-gain = gain × FCR; O₂ demand = biomass × mg/kg/hr. Commercial/RAS planning estimates — species and system vary. For a home aquarium use an aquarium API.",
"service": "aquaculture-api",
"endpoints": {
"GET /v1/feed": "Daily ration by body weight, and feed for a target gain via FCR.",
"GET /v1/meta": "This document.",
"GET /v1/oxygen": "Dissolved-oxygen demand of a stock (mg/hr, g/hr, g/day).",
"GET /v1/stocking": "Fish count a volume holds at a target biomass density."
},
"description": "Aquaculture (fish-farming) maths: stocking from biomass density, daily feed by body weight and FCR, and the dissolved-oxygen demand of a stock."
},
"meta": {
"timestamp": "2026-06-06T15:30:42.919Z",
"request_id": "3dd4f007-29ac-4ee5-a64e-365901669d5a"
},
"status": "ok",
"message": "Meta",
"success": true
}