Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/hydroponics-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}