Naar de inhoud
GET /v1/body-surface-area

Body surface area

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bodymetrics-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Body surface area (m²). Mosteller = √(height·weight/3600) is the simplest; used for drug dosing and cardiac index.",
        "unit": "m²",
        "inputs": {
            "height_cm": 180,
            "weight_kg": 75
        },
        "boyd_m2": 1.938,
        "dubois_m2": 1.9424,
        "average_m2": 1.9398,
        "haycock_m2": 1.9381,
        "mosteller_m2": 1.9365,
        "gehan_george_m2": 1.9438
    },
    "meta": {
        "timestamp": "2026-06-04T18:38:02.428Z",
        "request_id": "dcf4ebe3-e1c5-4bf1-b9a5-5af8cb6f3bda"
    },
    "status": "ok",
    "message": "BSA",
    "success": true
}