Vai al contenuto
GET /v1/remaining

Remaining growth

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/childheight-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}