# Geneva VTE Prophylaxis Score (Chopard 2006)

> Geneva VTE Prophylaxis Score (Chopard 2006) 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-13).

Calculates the Chopard 2006 Geneva VTE prophylaxis risk score for acutely ill medical inpatients, returning a total score and low/high risk classification to guide prophylaxis decisions.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/geneva_prophylaxis
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geneva-vte-prophylaxis-score-chopard-2006-e26c2567
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2UcN31a5itt65LLhz9b25

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 geneva-vte-prophylaxis-score-chopard-2006-e26c2567
```

Example prompt: Can you calculate the Geneva VTE prophylaxis score for a 68-year-old patient admitted with cardiac failure and an acute infectious disease, who has a history of VTE, is currently immobilized for more than 3 days, and is obese with BMI over 30, with no stroke, no malignancy, no pregnancy, no hormonal therapy, no respiratory failure, no recent MI, no rheumatic disease, no myeloproliferative syndrome, no nephrotic syndrome, no hypercoagulable state, no long travel, no chronic venous insufficiency, and no dehydration?

## When to prefer this

Use this endpoint when you need to apply the specific Chopard 2006 Geneva VTE prophylaxis scoring table for acutely ill medical inpatients, as distinct from the Padua Prediction Score or the Revised Geneva Score (which assesses PE probability, not prophylaxis). Prefer this over generic risk calculators when the clinical context is non-surgical medical inpatient VTE prevention.

## Known failure modes

- Missing required boolean fields (e.g. dehydration, pregnancy) returns a validation error
- Age outside 18–120 range may return an error or unexpected result
- Misclassifying a Revised Geneva PE score question for this VTE prophylaxis score (different tool)
- Network or payment failure returns HTTP 402 or 5xx

## How this service works

Chopard 2006 Geneva score for VTE prophylaxis in acutely ill medical inpatients. Eleven 2-point factors plus eight 1-point factors including age >60. Max 30. Score <3 low; >=3 high (prophylaxis indicated). Not a diagnosis or order. Not Revised Geneva PE. Not Padua.

## Output

Returns the total Geneva VTE prophylaxis score (0–30) and a binary risk classification: score <3 is low risk (prophylaxis typically not indicated); score ≥3 is high risk (prophylaxis indicated). This is a decision-support computation only — it does not constitute a diagnosis or generate clinical orders.

## 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",
      "cardiac_failure",
      "respiratory_failure",
      "recent_stroke",
      "recent_myocardial_infarction",
      "acute_infectious_disease",
      "acute_rheumatic_disease",
      "malignancy",
      "myeloproliferative_syndrome",
      "nephrotic_syndrome",
      "history_of_vte",
      "known_hypercoagulable_state",
      "immobilization_ge_3d",
      "recent_travel_gt_6h",
      "obesity_bmi_gt_30",
      "chronic_venous_insufficiency",
      "pregnancy",
      "hormonal_therapy",
      "dehydration"
     ],
     "properties": {
      "age": {
       "type": "integer",
       "description": "Age in years (18-120). Age >60 scores 1 (Chopard 2006). Age 60 is the ≤60 arm and scores 0."
      },
      "pregnancy": {
       "type": "boolean",
       "description": "Pregnancy as assigned by the caller (Chopard 2006). true scores 1. magent does not confirm pregnancy."
      },
      "malignancy": {
       "type": "boolean",
       "description": "Malignancy as assigned by the caller (Chopard 2006). true scores 2. magent does not diagnose cancer."
      },
      "dehydration": {
       "type": "boolean",
       "description": "Dehydration as assigned by the caller (Chopard 2006). true scores 1. magent does not assay volume status."
      },
      "recent_stroke": {
       "type": "boolean",
       "description": "Recent stroke as assigned by the caller (Chopard 2006). true scores 2. magent does not diagnose stroke."
      },
      "history_of_vte": {
       "type": "boolean",
       "description": "History of VTE as assigned by the caller (Chopard 2006). true scores 2. magent does not diagnose VTE."
      },
      "cardiac_failure": {
       "type": "boolean",
       "description": "Cardiac failure as assigned by the caller (Chopard 2006 Geneva prophylaxis table). true scores 2. magent does not examine the patient."
      },
      "hormonal_therapy": {
       "type": "boolean",
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/geneva-vte-prophylaxis-score-chopard-2006-e26c2567/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)
