# Cockcroft–Gault CrCl

Status: LIVE
Price: $0.005 USDC
`GET /api/calc/crcl_cockcroft_gault`
HTML: https://magentlab.com/docs/crcl
Markdown: https://magentlab.com/docs/crcl.md

Not a medical device. Not a diagnosis, dose, or listing recommendation.

## What it computes

Compute Cockcroft–Gault creatinine clearance in mL/min using total body weight.

## When to use

When a label still doses on CrCl rather than CKD-EPI eGFR and an agent must not invent mL/min.

## When not to use

- Not a dosing recommendation.
- Weight basis is always total body weight. Ideal or adjusted body weight is not applied; call IBW separately if a protocol needs AdjBW.
- Does not convert BUN to creatinine.

## Formula

```
CrCl_mL_min = ((140 - age) * weight_kg * (0.85 if female else 1)) / (72 * Scr_mg_dL)
```

## Citation

Prediction of creatinine clearance from serum creatinine
Cockcroft DW, Gault MH
Nephron. 1976;16(1):31-41
DOI: [10.1159/000180580](https://doi.org/10.1159/000180580)

## Worked example

### Age 65 female, 70 kg, Scr 1.1

Given: `age=65, creatinine_mg_dl=1.1, sex=female, weight_kg=70`

1. CrCl = ((140 - 65) * 70 * 0.85) / (72 * 1.1)
2. Round to 1 decimal


## Parameters

- `age` (integer, required): Age in years (18-120).
- `sex` (string, required): female applies the published 0.85 factor; male does not.
- `weight_kg` (number, optional): Total body weight in kilograms. Provide weight_kg or weight_lb.
- `weight_lb` (number, optional): Total body weight in pounds. Converted as kg = lb * 0.45359237.
- `creatinine_mg_dl` (number, optional): Serum creatinine in mg/dL. Provide this or creatinine_umol_l.
- `creatinine_umol_l` (number, optional): Serum creatinine in µmol/L. Converted as mg/dL = µmol/L / 88.42.

## Bulk (POST)

POST the same path with a JSON items array. Price is n times the GET unit. Invalid items return HTTP 400 before settlement.

Method: `POST /api/calc/crcl_cockcroft_gault`
Max items: 25
Price: unit_amount * n (unit 5000 atomic)
Status: PREVIEW

- 1 to 25 items. Each item uses the same keys as the GET query parameters.
- The first invalid item fails the whole request (index in the 400 JSON). You are not charged.
- HTTP 200 is {count, path, items}. Each items[i] is the GET 200 body for that row.
- Catalog misses (empty matches, found=false) stay paid 200s inside that slot.
- x402 resource URL is this path plus n and body_sha256. Browsers that prefer text/html get the same paywall as GET; Pay retries POST with the same items.

Example request:

```json
{
  "items": [
    {
      "age": "65",
      "creatinine_mg_dl": "1.1",
      "sex": "female",
      "weight_kg": "70"
    },
    {
      "age": "65",
      "creatinine_mg_dl": "1.1",
      "sex": "female",
      "weight_kg": "70"
    }
  ]
}
```

Human paywall (two-item fixture): https://api.magentlab.com/paywall/bulk/crcl

Example 200:

```json
{
  "count": 2,
  "path": "/api/calc/crcl_cockcroft_gault",
  "items": [
    {
      "units": "mL/min",
      "disclaimer": "Not a medical device. Deterministic published-formula or coded-ontology output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "age_years": 65,
      "citation": {
        "authors": "Cockcroft DW, Gault MH",
        "doi": "10.1159/000180580",
        "id": "cockcroft-1976",
        "source": "Nephron. 1976;16(1):31-41",
        "title": "Prediction of creatinine clearance from serum creatinine"
      },
      "formula": "cockcroft_gault",
      "formula_expression": "CrCl_mL_min = ((140 - age) * weight_kg * (0.85 if female else 1)) / (72 * Scr_mg_dL)",
      "sex": "female",
      "weight_kg": 70.0,
      "creatinine_mg_dl": 1.1,
      "crcl_ml_min": 56.3,
      "weight_basis": "total_body_weight"
    },
    {
      "units": "mL/min",
      "disclaimer": "Not a medical device. Deterministic published-formula or coded-ontology output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "age_years": 65,
      "citation": {
        "authors": "Cockcroft DW, Gault MH",
        "doi": "10.1159/000180580",
        "id": "cockcroft-1976",
        "source": "Nephron. 1976;16(1):31-41",
        "title": "Prediction of creatinine clearance from serum creatinine"
      },
      "formula": "cockcroft_gault",
      "formula_expression": "CrCl_mL_min = ((140 - age) * weight_kg * (0.85 if female else 1)) / (72 * Scr_mg_dL)",
      "sex": "female",
      "weight_kg": 70.0,
      "creatinine_mg_dl": 1.1,
      "crcl_ml_min": 56.3,
      "weight_basis": "total_body_weight"
    }
  ]
}
```

## Response fields

- `formula` (string): cockcroft_gault
- `formula_expression` (string): Exact expression used
- `age_years` (integer): Age used in the equation
- `sex` (string): female or male
- `weight_kg` (number): Total body weight in kg
- `creatinine_mg_dl` (number): Normalized creatinine
- `crcl_ml_min` (number): Creatinine clearance in mL/min, 1 decimal place
- `units` (string): mL/min
- `weight_basis` (string): Always total_body_weight. Ideal/adjusted body weight is not applied.
- `citation` (object): Nephron 1976 citation
- `disclaimer` (string): Not-a-device notice

## Example JSON

Frozen fixture. Not a live lookup.

```json
{
  "units": "mL/min",
  "disclaimer": "Not a medical device. Deterministic published-formula or coded-ontology output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
  "age_years": 65,
  "citation": {
    "authors": "Cockcroft DW, Gault MH",
    "doi": "10.1159/000180580",
    "id": "cockcroft-1976",
    "source": "Nephron. 1976;16(1):31-41",
    "title": "Prediction of creatinine clearance from serum creatinine"
  },
  "formula": "cockcroft_gault",
  "formula_expression": "CrCl_mL_min = ((140 - age) * weight_kg * (0.85 if female else 1)) / (72 * Scr_mg_dL)",
  "sex": "female",
  "weight_kg": 70.0,
  "creatinine_mg_dl": 1.1,
  "crcl_ml_min": 56.3,
  "weight_basis": "total_body_weight"
}
```

## Errors

- HTTP 400 `invalid_age`: age must be an integer from 18 to 120 Returned before settlement; you are not charged.
- HTTP 400 `invalid_sex`: sex must be female or male Returned before settlement; you are not charged.
- HTTP 400 `invalid_weight`: weight_kg (1-500) or weight_lb (2-1100) is required Returned before settlement; you are not charged.
- HTTP 400 `invalid_creatinine`: creatinine_mg_dl (0.1-20) or creatinine_umol_l (9-1768) is required Returned before settlement; you are not charged.
- HTTP 400 `invalid_items`: POST body must be a JSON object with only an items array Returned before settlement; you are not charged.
- HTTP 400 `invalid_item_count`: items must be an array of 1 to 25 objects Returned before settlement; you are not charged.
- HTTP 400 `invalid_item`: each items entry must be a JSON object Returned before settlement; you are not charged.
- HTTP 402 `payment_required`: Missing or invalid PAYMENT-SIGNATURE; decode the PAYMENT-REQUIRED header
- HTTP 409 `payment_in_progress`: The same authorization nonce is already being settled; retry shortly
- HTTP 429 `rate_limited`: Too many requests from this client
- HTTP 503 `settlement_uncertain`: Settlement is unconfirmed; retry with the same PAYMENT-SIGNATURE
- HTTP 503 `facilitator_unavailable`: Payment facilitator unavailable
- HTTP 503 `facilitator_misconfigured`: Payment facilitator is not configured
- HTTP 503 `facilitator_unauthorized`: Payment facilitator rejected credentials
- HTTP 503 `ledger_unavailable`: Payment ledger unavailable
- HTTP 503 `payment_unavailable`: Payment processing unavailable

## Related tools

- [CKD-EPI 2021 eGFR](https://magentlab.com/docs/egfr) — Compute race-free CKD-EPI 2021 creatinine eGFR in mL/min/1.73m2.
- [Devine IBW](https://magentlab.com/docs/ibw) — Compute Devine ideal body weight and 0.4 adjusted body weight from height, sex, and actual weight.

## Also searched as

- Cockcroft-Gault
- creatinine clearance
- CrCl TBW
- renal dosing CrCl

## Payment

Required query parameters must be present and valid. Invalid params return HTTP 400 JSON before settlement. magent does not charge. Fix the params, then request a new 402 quote for that complete URL. Catalog misses (empty matches, found=false) are valid paid 200s.

## Guarantees

- Invalid query parameters return HTTP 400 before settlement. You are not charged.
- Settlement finishes before the tool executes. Uncertain settlement fails closed (HTTP 503).
- Execution is timeout-bounded and concurrency-capped.
- Calculator inputs are not persisted. Request logs store path without query.
