Ir al contenido
GET /v1/remaining

Remaining growth

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/childheight-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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