# AUSDRISK Type 2 Diabetes Risk Calculator (Chen 2010, Waist Model)

> AUSDRISK Type 2 Diabetes Risk Calculator (Chen 2010, Waist Model) 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-15).

Calculates the Australian Type 2 Diabetes Risk Assessment Tool (AUSDRISK) score using the Chen 2010 Box 3 waist circumference model, returning a numeric risk score and at-risk flag.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/ausdrisk
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ausdrisk-type-2-diabetes-risk-calculator-chen-2010-waist-model-9a4b43d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zXlQQW_Ps2vScgHydFFZy

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 ausdrisk-type-2-diabetes-risk-calculator-chen-2010-waist-model-9a4b43d6
```

Example prompt: Calculate the AUSDRISK diabetes risk score for a 58-year-old male, ancestry 'other', waist 106 cm, whose father had diabetes, who has had a high glucose reading before, is on antihypertensives, currently smokes, and is physically inactive.

## When to prefer this

Use this endpoint when you need the validated Chen 2010 AUSDRISK score using waist circumference (Box 3 model, not BMI). Prefer this over manual calculation to ensure correct boundary handling (e.g. age 34 vs 35, waist cutoff differences for ATSI/Asian vs other ancestry). Do not use for FINDRISC or other non-Australian diabetes risk tools.

## Known failure modes

- Missing required query parameter (age, sex, ancestry, waist_cm, etc.) returns a 400 error
- Age outside 18–120 range rejected with validation error
- Waist circumference outside 40–200 cm range rejected
- Invalid enum value for sex or ancestry returns 400
- Payment not provided or insufficient returns 402

## How this service works

Chen 2010 AUSDRISK Box 3 waist model (not BMI). Male 3; age 18-34 0, 35-44 2, 45-54 4, 55-64 6, >=65 8; ancestry atsi_or_asian or southern_european_or_pacific 2 (caller-assigned); parental diabetes 3; high glucose 6; antihypertensives 2; current smoker 2; physically inactive 2; waist cat1/2/3 = 0/4/7 (ATSI/Asian vs other cutoffs). Max 35. at_risk iff score>=12. Not a diagnosis. Not FINDRISC.

## Output

Returns the total AUSDRISK score (integer 0–35), a boolean at_risk flag (true if score ≥ 12), the waist category assigned (cat1/cat2/cat3), and the individual point contributions for each risk factor. Does not constitute a clinical diagnosis.

## 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",
      "ancestry",
      "parental_diabetes",
      "history_high_glucose",
      "antihypertensive",
      "current_smoker",
      "physically_inactive",
      "waist_cm"
     ],
     "properties": {
      "age": {
       "type": "integer",
       "description": "Age in years (18-120). Chen 2010: 25-34 scores 0; magent scores 18-34 as 0 and does not reject 18-24. 35-44 scores 2; 45-54 scores 4; 55-64 scores 6; ≥65 scores 8. Age 34 scores 0; 35 and 44 score 2; 45 and 54 score 4; 55 and 64 score 6; 65 scores 8."
      },
      "sex": {
       "enum": [
        "female",
        "male"
       ],
       "type": "string",
       "description": "female or male. Chen 2010: male scores 3; female scores 0."
      },
      "ancestry": {
       "enum": [
        "atsi_or_asian",
        "southern_european_or_pacific",
        "other"
       ],
       "type": "string",
       "description": "Caller-assigned ancestry as used in Chen 2010. atsi_or_asian (Aboriginal and Torres Strait Islander or Asian) or southern_european_or_pacific (Southern European or Pacific Islander) scores 2; other scores 0. magent does not assign ancestry. Waist cutoffs for atsi_or_asian follow the paper footnote; southern_european_or_pacific uses the otherwise cutoffs."
      },
      "waist_cm": {
       "type": "number",
       "description": "Waist circumference in cm (40-200). Chen 2010 Box 3 footnote, not BMI. If ancestry is atsi_or_asian: men cat1 <90, cat2 ≥90 and <100, cat3 ≥100; women cat1 <80, cat2 ≥80 and <90, cat3 ≥90. Otherwise (including southern_european_or_pacific and other): men cat1 <102, cat2 ≥102 and <110, cat3 ≥110; women cat1 <88, cat2 ≥88 and <100, cat3 ≥100. cat1 scores 0; cat2 scores 4; cat3 scores 7. 90 and 100 (atsi_or_asian men) and 80 and 90 (atsi_or_asian women) are the published boundaries."
      },
      "current_smoker": {
       "type": "boolean",
       "description": "Cu
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ausdrisk-type-2-diabetes-risk-calculator-chen-2010-waist-model-9a4b43d6/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)
