# CARE Score Calculator (Dupuis 2001)

> CARE Score Calculator (Dupuis 2001) is a paid API for AI agents from api.magentlab.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the Cardiac Anesthesia Risk Evaluation (CARE) score label and Dupuis 2001 Table 4 in-hospital mortality and morbidity percentages for a caller-assigned CARE class 1-5 with optional emergency suffix.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/care
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/care-score-calculator-dupuis-2001-5e9e2d5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s0zUuJwkjYoC1ChugVff1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability care-score-calculator-dupuis-2001-5e9e2d5b
```

Example prompt: Look up the Dupuis 2001 CARE score for a class 3 cardiac surgery patient who needs emergency surgery — I want the CARE label and the in-hospital mortality and morbidity percentages from the Ottawa reference population.

## When to prefer this

Use this endpoint when you need to look up the standardized Dupuis 2001 CARE score label and associated Ottawa reference population mortality/morbidity statistics for a cardiac anesthesia patient. Prefer this over EuroSCORE, Parsonnet, or Gupta MICA lookups when the clinical context is specifically the CARE classification system (class 1-5 with optional emergency suffix for classes 3-5).

## Known failure modes

- care_class 1 or 2 with emergency=true is rejected as invalid (E suffix not applicable to classes 1-2)
- care_class outside the 1-5 integer range returns a validation error
- Missing required query parameters (care_class or emergency) returns a 400 error
- Payment failure (x402) if USDC payment of $0.005 is not provided

## How this service works

Cardiac Anesthesia Risk Evaluation (CARE) score (Dupuis 2001). Caller-assigned class 1-5; emergency suffix E only for classes 3-5 (labels 3E, 4E, 5E). Returns care_label plus Dupuis 2001 Table 4 in-hospital mortality and morbidity percents from the Ottawa reference population. Not an anesthetic plan or surgical booking. magent does not examine the patient. Not Parsonnet, EuroSCORE, or Gupta MICA.

## Output

Returns the CARE label string (e.g. '3E', '4', '5E') and the corresponding Dupuis 2001 Table 4 in-hospital mortality percentage and morbidity percentage from the Ottawa reference population. Does not provide an anesthetic plan, surgical booking, or patient examination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "care_class",
      "emergency"
     ],
     "properties": {
      "emergency": {
       "type": "boolean",
       "description": "true appends E for emergency surgery as soon as the diagnosis is made and an operating room is available (Dupuis 2001). Required. E applies only to classes 3-5 (labels 3E, 4E, 5E). Class 1 or 2 with emergency true is rejected. Unstable conditions needing surgery within 24 h but not immediately are uncontrolled medical problems, not E. magent does not examine the patient."
      },
      "care_class": {
       "type": "integer",
       "description": "Dupuis 2001 CARE class 1-5 as assigned by the caller (1 stable cardiac disease, no other medical problem, noncomplex surgery; 2 stable cardiac disease, one or more controlled medical problems, noncomplex surgery; 3 any uncontrolled medical problem or complex surgery; 4 uncontrolled medical problem and complex surgery; 5 chronic or advanced cardiac disease, surgery as last hope). magent does not examine the patient."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/care-score-calculator-dupuis-2001-5e9e2d5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.magentlab.com](https://www.zero.xyz/host/api.magentlab.com/llms.txt)
