/v1/drip-rate
IV infusion drip rate
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/drip-rate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/medcalc-api/v1/drip-rate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/medcalc-api/v1/drip-rate");
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/drip-rate",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"time_min": 480,
"volume_ml": 1000,
"disclaimer": "informational only, not medical advice",
"ml_per_hour": 125,
"drops_per_minute": 41.667,
"drop_factor_gtt_ml": 20,
"drops_per_minute_rounded": 42
},
"meta": {
"timestamp": "2026-06-03T17:42:02.337Z",
"request_id": "3688c346-68c0-46f7-aba4-1bdacfbda02f"
},
"status": "ok",
"message": "IV drip rate",
"success": true
}