Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "name": "Clinical Calculator API",
        "notes": "INFORMATIONAL ONLY — not medical advice. eGFR uses CKD-EPI 2021 (race-free). BSA in m². Nothing is stored.",
        "version": "v1",
        "endpoints": [
            {
                "path": "/v1/bsa",
                "params": {
                    "height": "cm",
                    "weight": "kg"
                },
                "returns": "body surface area (Mosteller, Du Bois, Haycock)"
            },
            {
                "path": "/v1/egfr",
                "params": {
                    "age": "years",
                    "sex": "male|female",
                    "weight": "kg (for Cockcroft-Gault)",
                    "creatinine": "serum creatinine",
                    "creatinine_unit": "mg/dL|umol/L"
                },
                "returns": "eGFR and creatinine clearance"
            },
            {
                "path": "/v1/drip-rate",
                "params": {
                    "volume": "mL",
                    "minutes": "or hours",
                    "drop_factor": "gtt/mL (default 20)"
                },
                "returns": "drops per minute and mL/hour"
            },
            {
                "path": "/v1/gcs",
                "params": {
                    "eye": "1-4",
                    "motor": "1-6",
                    "verbal": "1-5"
                },
                "returns": "the GCS total and severity"
            },
            {
                "path": "/v1/meta",
                "params": [],
                "returns": "this document"
            }
        ],
        "description": "Standard clinical and nursing calculators as an API — the everyday medical maths, computed locally. The bsa endpoint computes body surface area from weight and height by the Mosteller, Du Bois and Haycock formulas (used for chemotherapy and drug dosing). The egfr endpoint estimates kidney function from serum creatinine, age and sex using the race-free CKD-EPI 2021 equation, and the Cockcroft-Gault creatinine clearance when a weight is given (creatinine in mg/dL or µmol/L). The drip-rate endpoint computes an IV infusion's drops per minute and millilitres per hour from the volume, time and drop factor. The gcs endpoint scores the Glasgow Coma Scale from its eye, verbal and motor components and gives the severity band. Everything is computed locally and deterministically, so it is instant and private. INFORMATIONAL ONLY — not medical advice; verify with clinical judgement and approved tools. Ideal for healthcare and nursing apps, clinical decision-support prototypes, medical education, and EHR tooling. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. This is clinical maths; for drug reference data use a drug API and for BMI/BMR/calories use a health-calculator API."
    },
    "meta": {
        "timestamp": "2026-06-03T17:42:02.659Z",
        "request_id": "7d5dc415-
…