# Endorf 2007 Bronchoscopic AIS Inhalation Injury Grade Lookup

> Endorf 2007 Bronchoscopic AIS Inhalation Injury Grade Lookup 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).

Returns the published bronchoscopic description and high-grade flag for an Endorf 2007 AIS inhalation injury grade (0–4) supplied by the caller.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/ais_inhalation
- 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/endorf-2007-bronchoscopic-ais-inhalation-injury-grade-lookup-4ccbfebe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__pz66dbJ9eTdaelxICLvt

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 endorf-2007-bronchoscopic-ais-inhalation-injury-grade-lookup-4ccbfebe
```

Example prompt: The bronchoscopist documented a grade 3 inhalation injury — can you look up the Endorf 2007 description for that grade and tell me whether it's considered high grade?

## When to prefer this

Use this endpoint when an agent or caller already has a bronchoscopic inhalation injury grade (0–4) assigned by a clinician per Endorf 2007 and needs the canonical published description or the high-grade survival flag programmatically. Do not use to perform bronchoscopy, generate a diagnosis, compute an ISS body-region AIS score, or interpret a RADS CT smoke score.

## Known failure modes

- Non-integer or out-of-range value (e.g. 5, 1.5, roman numeral I) is rejected — caller must supply an integer 0–4
- Missing ais_grade query parameter returns an error
- Confusion with ISS body-region AIS or RADS CT smoke score — this endpoint only handles Endorf 2007 bronchoscopic grading

## How this service works

Endorf 2007 bronchoscopic AIS inhalation injury grade 0-4 as assigned by the caller. Returns ais_grade, the published bronchoscopic description, and high_grade (true when grade is 2-4; those grades had worse survival than 0-1, P = .03). magent does not perform bronchoscopy. Not a diagnosis. Not ISS body-region AIS. Not RADS CT smoke score. Not a medical device.

## Output

Returns a JSON object with three fields: ais_grade (the integer grade as submitted), the published Endorf 2007 bronchoscopic description for that grade, and high_grade (a boolean that is true when the grade is 2, 3, or 4, reflecting the cohort with significantly worse survival, P=.03).

## 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": [
      "ais_grade"
     ],
     "properties": {
      "ais_grade": {
       "type": "integer",
       "description": "Endorf 2007 bronchoscopic AIS inhalation grade 0-4 as assigned by the caller (0 no injury: absence of carbonaceous deposits, erythema, edema, bronchorrhea, or obstruction; 1 mild: minor or patchy areas of erythema, carbonaceous deposits in proximal or distal bronchi, any or combination; 2 moderate: moderate degree of erythema, carbonaceous deposits, bronchorrhea, with or without compromise of the bronchi, any or combination; 3 severe: severe inflammation with friability, copious carbonaceous deposits, bronchorrhea, bronchial obstruction, any or combination; 4 massive: evidence of mucosal sloughing, necrosis, endoluminal obliteration, any or combination). Integer 0-4 only; reject 5, 1.5, and roman I. magent does not perform bronchoscopy. Not ISS body-region AIS. Not RADS CT smoke score."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/endorf-2007-bronchoscopic-ais-inhalation-injury-grade-lookup-4ccbfebe/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)
