Vai al contenuto
GET /v1/double

Double-the-height-at-2

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "A common rule of thumb: adult height ≈ 2 × the height at age 2 (girls are often estimated from age 18 months). Approximate only.",
        "inputs": {
            "height_at_2": 88
        },
        "predicted_height_cm": 176
    },
    "meta": {
        "timestamp": "2026-06-04T18:38:19.379Z",
        "request_id": "17636020-4375-4453-9b61-bc86de8bad95"
    },
    "status": "ok",
    "message": "Double-at-2 estimate",
    "success": true
}