# CAROC 2010 10-Year Fracture Risk Calculator

> CAROC 2010 10-Year Fracture Risk Calculator 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).

Computes the CAROC 2010 10-year major osteoporotic fracture (MOF) risk category (low/moderate/high) from age, sex, femoral-neck T-score, and clinical modifier flags.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/caroc
- 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/caroc-2010-10-year-fracture-risk-calculator-4539546f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jry8N-AyeH92ju21GVx8z

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 caroc-2010-10-year-fracture-risk-calculator-4539546f
```

Example prompt: What's the CAROC 2010 fracture risk category for a 68-year-old female with a femoral-neck T-score of -2.5, who had a fragility fracture after age 40 but no hip or spine fracture, no multiple fragility fractures, and has been on prolonged glucocorticoids?

## When to prefer this

Use this endpoint when you need to programmatically apply the published CAROC 2010 Canadian fracture risk classification table to a patient's age, sex, and femoral-neck T-score with clinical modifier flags. Prefer it over FRAX-based tools when the clinical workflow specifically calls for CAROC 2010 categories and Canadian guideline alignment. It is not a substitute for FRAX probability calculations or clinical judgment, and does not perform DXA or medication ordering.

## Known failure modes

- Age outside 50–89 range returns a validation error rejecting the input
- Invalid sex value (not 'female' or 'male') causes a rejection
- T-score outside -6.0 to 4.0 range is rejected
- Missing required query parameters return an error
- Caller-supplied boolean flags not interpretable cause malformed request errors

## How this service works

CAROC 2010 10-year MOF category from age, sex, femoral-neck T-score, and fragility or glucocorticoid flags. Basal low/moderate/high from printed T-score bands; hip or spine fragility or multiple fractures is high; fracture after 40 plus steroids is high; either flag alone bumps one class. Labels <10%, 10-20%, >20%. Not FRAX or a drug order. Not a medical device.

## Output

Returns the CAROC 2010 10-year major osteoporotic fracture risk category: low (<10%), moderate (10–20%), or high (>20%), derived from the printed T-score band table adjusted by clinical modifier flags (hip/spine fragility, multiple fractures, fragility fracture after 40, prolonged glucocorticoids).

## 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": [
      "age",
      "sex",
      "femoral_neck_t_score",
      "fragility_fracture_after_40",
      "prolonged_glucocorticoids",
      "hip_or_spine_fragility",
      "multiple_fragility_fractures"
     ],
     "properties": {
      "age": {
       "type": "integer",
       "description": "Age in years. CAROC 2010 accepts 50-89 (integer). Ages 50-85 map to the printed 5-year row; 86-89 use the 85-year row. Ages under 50 or over 89 are rejected. magent does not take a date of birth."
      },
      "sex": {
       "type": "string",
       "description": "Sex used by the printed table: female or male."
      },
      "femoral_neck_t_score": {
       "type": "number",
       "description": "Caller-assigned femoral-neck BMD T-score (-6.0 to 4.0). The NHANES III Caucasian-women reference is a densitometry convention for how that T-score was computed; this tool does not take a race input. magent does not perform DXA."
      },
      "hip_or_spine_fragility": {
       "type": "boolean",
       "description": "Hip or clinical spine fragility fracture as assigned by the caller (Papaioannou 2010). true or false. When true, risk_level is high regardless of BMD. magent does not read imaging."
      },
      "prolonged_glucocorticoids": {
       "type": "boolean",
       "description": "Prolonged glucocorticoids as assigned by the caller: at least 3 months in the prior year at prednisone-equivalent 7.5 mg/day or more (Papaioannou 2010). true or false. Alone, bumps one class; with fragility_fracture_after_40, risk_level is high. magent does not compute a steroid dose."
      },
      "fragility_fracture_after_40": {
       "type": "boolean",
       "description": "Fragility fracture after age 40 as assigned by the caller (Papaioannou 2010). true or false. Alone, bumps one class; with prolonged_glucocorticoids, risk_level is high. magent does not take a fracture history."
      },
      "multiple_fragility_fr
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/caroc-2010-10-year-fracture-risk-calculator-4539546f/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)
