Zum Inhalt springen
GET /v1/remaining

Remaining growth

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/childheight-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/childheight-api/v1/remaining" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/childheight-api/v1/remaining", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/childheight-api/v1/remaining");
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/childheight-api/v1/remaining",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Remaining = predicted − current; percent of adult height reached = current/predicted. Growth slows toward the end and stops after puberty.",
        "inputs": {
            "current_height": 150,
            "predicted_height": 179
        },
        "remaining_growth_cm": 29,
        "percent_of_adult_height": 83.8
    },
    "meta": {
        "timestamp": "2026-06-04T18:38:19.570Z",
        "request_id": "971c2a4e-eddd-493e-8d0c-3c6ab423c804"
    },
    "status": "ok",
    "message": "Remaining growth",
    "success": true
}