/v1/double
Double-the-height-at-2
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}