/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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-
…