Skip to content
GET /v1/drip-rate

IV infusion drip rate

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/medcalc-api

It works. Grab an API key and use it in your project.

Get an API key

Code 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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}