/v1/double
Double-the-height-at-2
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}