/v1/meta
Spec
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/hydroponics-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hydroponics-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hydroponics-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/hydroponics-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"notes": "EC in mS/cm, PPM as mg/L, volume in litres, PPFD in µmol/m²/s, photoperiod in hours. PPM depends on the TDS scale — always state which. This is a growing aid; confirm with a calibrated meter.",
"service": "hydroponics-api",
"endpoints": {
"GET /v1/ec": "Convert between EC (mS/cm) and PPM/TDS on the 500/700/640 scale.",
"GET /v1/dli": "Daily Light Integral from PPFD and photoperiod, or the PPFD needed for a target DLI.",
"GET /v1/meta": "This document.",
"GET /v1/reservoir": "Water to add to dilute to a target EC, or stock to concentrate."
},
"description": "Hydroponics / indoor-grow maths: EC↔PPM nutrient strength, grow-light DLI from PPFD, and reservoir dilution to a target EC."
},
"meta": {
"timestamp": "2026-06-05T21:48:45.229Z",
"request_id": "75670cde-8227-44e7-bae8-77faa1f83573"
},
"status": "ok",
"message": "Meta",
"success": true
}