# Wang 2024 SEX-SHOCK Nomogram for Cardiogenic Shock After ACS PCI

> Wang 2024 SEX-SHOCK Nomogram for Cardiogenic Shock After ACS PCI 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 sex-specific integer nomogram score and predicted probability of in-hospital cardiogenic shock after ACS PCI, using Wang 2024 Table S13 clinical flags, LVEF bands, and log-transformed creatinine and CRP values.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/sex_shock
- 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/wang-2024-sex-shock-nomogram-for-cardiogenic-shock-after-acs-pci-811e4b40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l3kGp57TIoUzQ3SvuVPWD

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 wang-2024-sex-shock-nomogram-for-cardiogenic-shock-after-acs-pci-811e4b40
```

Example prompt: Calculate the Wang 2024 sex-shock nomogram score for a 72-year-old male ACS patient post-PCI: TIMI flow <3 true, no left main culprit, glucose >10 mmol/L true, SBP/PP threshold not met, heart rate >90 true, Killip class III false, no cardiac arrest on admission, LVEF band 35–50%, ST-segment elevation true, log creatinine 6.2, log CRP 5.8.

## When to prefer this

Use this endpoint when you need to apply the Wang 2024 Table S13 sex-specific integer nomogram specifically — i.e. when you have log-transformed creatinine and CRP values, LVEF band classification, Killip class, and the other required ACS post-PCI clinical flags already prepared. Prefer this over generic shock indices (e.g. simple shock index) when sex-stratified nomogram scoring including LVEF and inflammatory markers is required. Do not use for STEMI triage tools, hemodynamic monitoring, or treatment decisions.

## Known failure modes

- Missing required query parameters (sex, clinical flags, LVEF band, log creatinine, log CRP) return a 400 Bad Request
- Invalid enum values for sex or lvef_band return validation error
- Log-transformed values outside the printed nomogram axis range may produce out-of-range scores
- Non-integer age or boolean fields passed as strings may cause parsing errors
- Payment not attached or insufficient USDC balance returns 402 Payment Required

## How this service works

Wang 2024 SEX-SHOCK Supplementary Table S13 sex-specific integer nomogram for in-hospital cardiogenic shock after ACS PCI. ORBI-like clinical flags plus ST-segment elevation, LVEF bands, and log-transformed creatinine and CRP levels as printed. Sum points; S13 Pr(CS) conversion. Not a medical device, not a cath-lab or shock-treatment order, and not ORBI.

## Output

Returns the summed integer nomogram point total and the corresponding predicted probability of in-hospital cardiogenic shock, derived from the Wang 2024 Table S13 sex-specific conversion table. Not a clinical order or device output.

## 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": [
      "sex",
      "post_pci_timi_lt_3",
      "left_main_culprit",
      "glucose_gt_10_mmol_l",
      "sbp_lt_125_and_pp_lt_45",
      "heart_rate_gt_90",
      "killip_class_iii",
      "cardiac_arrest_on_admission",
      "age_years",
      "lvef_band",
      "st_segment_elevation",
      "creatinine_log",
      "crp_log"
     ],
     "properties": {
      "sex": {
       "enum": [
        "female",
        "male"
       ],
       "type": "string",
       "description": "Caller-assigned sex for the Wang 2024 S13 female or male nomogram. female or male. magent does not assign sex."
      },
      "crp_log": {
       "type": "number",
       "description": "Wang 2024 S13 log-transformed CRP nomogram level (Figure 6 axis), not raw mg/L. Female printed ticks 0, 4, 8; male 0, 6, 10. magent does not assay CRP or invent cutoffs."
      },
      "age_years": {
       "type": "integer",
       "description": "Age in years (18-120). Wang 2024 S13 levels: <70 scores 49; >=70 scores 54 (female) or 55 (male)."
      },
      "lvef_band": {
       "enum": [
        "lt_35",
        "35_to_50",
        "gt_50"
       ],
       "type": "string",
       "description": "Caller-assigned LVEF band (Wang 2024 S13): lt_35 (49), 35_to_50 (female 22, male 18), or gt_50 (0). magent does not measure LVEF."
      },
      "creatinine_log": {
       "type": "number",
       "description": "Wang 2024 S13 log-transformed creatinine nomogram level (Figure 6 axis), not raw µmol/L. Female printed ticks 4-9; male 4.5-9.5. magent does not convert units or invent cutoffs."
      },
      "heart_rate_gt_90": {
       "type": "boolean",
       "description": "Heart rate >90/min (Wang 2024 S13: female No 49 / Yes 55; male No 49 / Yes 62). true or false."
      },
      "killip_class_iii": {
       "type": "boolean",
       "description": "Killip class III (Wang 2024 S13: female No 49 / Yes 76; male No 49 / Yes 66). Killip I and
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wang-2024-sex-shock-nomogram-for-cardiogenic-shock-after-acs-pci-811e4b40/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)
