# magent I-SEE EoE Severity Score Calculator

> magent I-SEE EoE Severity Score 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-13).

Computes the Dellon 2022 I-SEE (Index of Severity for Eosinophilic Esophagitis) composite score and severity band from caller-supplied clinical parameters

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/i_see
- 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/magent-i-see-eoe-severity-score-calculator-aa65f45d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_72E735-x_192OW0jSuW8C

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 magent-i-see-eoe-severity-score-calculator-aa65f45d
```

Example prompt: Calculate the I-SEE score for a patient with daily symptoms, no food impaction, no hospitalizations or perforations, no malnutrition, no persistent inflammation, mild inflammatory endoscopy (grade 1), peak eos between 15 and 60, endoscope passes easily through strictures (passes_easily), and mild histologic fibrosis — what severity band does that come out to?

## When to prefer this

Use this endpoint when you have all required Dellon 2022 Table I inputs already extracted from clinical notes or structured EHR data and need a validated, reproducible I-SEE score with severity band. It is not a substitute for endoscopy or eosinophil counting — callers must supply those values. Prefer this over manual calculation to eliminate arithmetic errors in the weighted composite score.

## Known failure modes

- Missing required query parameter returns validation error
- Invalid enum value for any parameter (e.g. unrecognized symptoms or fibro_endoscopy token) returns 400
- Network timeout or service unavailability returns 5xx
- Caller supplies clinically inconsistent values (e.g. child food impaction token for an adult) — magent scores as provided without clinical validation
- Peak eos value must be caller-assigned; magent cannot derive it from raw counts

## How this service works

Dellon 2022 I-SEE Table I: symptoms 0/1/2/4, food_impaction 0/2/4, stacking complications (hospitalization 4, perforation 15, malnutrition 15, persistent_inflammation 15), inflam endoscopy 0-2, peak eos 0-2, fibro endoscopy 0/1/2/15, histologic fibrosis 2. Max 78. Bands <1 inactive, 1-6 mild, 7-14 moderate, ≥15 severe. magent does not perform endoscopy or count eos. Not EREFS. Not a diagnosis.

## Output

Returns the numeric I-SEE total score (0–78) along with the severity band classification: inactive (<1), mild (1–6), moderate (7–14), or severe (≥15), based on weighted contributions from symptoms, food impaction, complications, inflammatory endoscopy, peak eosinophils, fibrostenotic endoscopy, and histologic fibrosis as defined in Dellon 2022 Table I.

## 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": [
      "symptoms",
      "food_impaction",
      "hospitalization_eoe",
      "esophageal_perforation",
      "malnutrition",
      "persistent_inflammation",
      "inflam_endoscopy",
      "peak_eos",
      "fibro_endoscopy",
      "histologic_fibrosis"
     ],
     "properties": {
      "peak_eos": {
       "enum": [
        "lt_15",
        "15_60",
        "gt_60"
       ],
       "type": "string",
       "description": "Caller-assigned Dellon 2022 Table I peak eosinophils per hpf: lt_15 (0; <15), 15_60 (1; 15-60), or gt_60 (2; >60). magent does not count eosinophils."
      },
      "symptoms": {
       "enum": [
        "none",
        "weekly",
        "daily",
        "multiple_or_social"
       ],
       "type": "string",
       "description": "Caller-assigned Dellon 2022 Table I symptoms: none (0), weekly (1), daily (2), or multiple_or_social (4; multiple times per day or disrupting social functioning)."
      },
      "malnutrition": {
       "type": "boolean",
       "description": "Caller-assigned malnutrition with BMI <5th percentile or decreased growth trajectory (Dellon 2022 Table I complication; stacks). true (15) or false (0). The caller assigns this flag; magent does not compute BMI percentiles."
      },
      "food_impaction": {
       "enum": [
        "none",
        "adult_ge_18",
        "child_lt_18"
       ],
       "type": "string",
       "description": "Caller-assigned Dellon 2022 Table I food impaction with ER visit or endoscopy: none (0), adult_ge_18 (2; patient ≥18 years), or child_lt_18 (4; patient <18 years). The caller assigns the age-specific token; magent does not take a separate age parameter."
      },
      "fibro_endoscopy": {
       "enum": [
        "none",
        "passes_easily",
        "dilation_or_snug",
        "cannot_pass_or_repeated"
       ],
       "type": "string",
       "description": "Caller-assigned Dellon 2022 Table I fibrostenotic e
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/magent-i-see-eoe-severity-score-calculator-aa65f45d/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)
