/v1/bsa
Body surface area
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/medcalc-api/v1/bsa" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/medcalc-api/v1/bsa", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/medcalc-api/v1/bsa");
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/medcalc-api/v1/bsa",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"bsa_m2": {
"du_bois": 1.8097,
"haycock": 1.8257,
"mosteller": 1.8181
},
"height_cm": 170,
"weight_kg": 70,
"disclaimer": "informational only, not medical advice"
},
"meta": {
"timestamp": "2026-06-03T17:42:02.208Z",
"request_id": "6c6831dc-59e3-4eb7-b98b-aaacffd16e90"
},
"status": "ok",
"message": "Body surface area",
"success": true
}