# Pizov 1999 Blast Lung Injury Severity Calculator

> Pizov 1999 Blast Lung Injury Severity 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-14).

Classifies blast lung injury severity (mild, moderate, or severe) per Pizov 1999 criteria using caller-supplied PaO2/FiO2 ratio, infiltrate pattern, pneumothorax status, and bronchopleural fistula status.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/bli
- 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/pizov-1999-blast-lung-injury-severity-calculator-7b28bc1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pfdSmRmO0ikAl_HX3Clbj

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 pizov-1999-blast-lung-injury-severity-calculator-7b28bc1a
```

Example prompt: My patient had a blast injury — their PaO2/FiO2 ratio is 140 mm Hg, I'm seeing diffuse infiltrates on imaging, no pneumothorax, and no bronchopleural fistula. Can you run the Pizov 1999 blast lung injury severity classification?

## When to prefer this

Use this endpoint when you need a strict, rule-based Pizov 1999 blast lung injury severity classification grounded in a published clinical definition. It is appropriate only when the caller has already independently determined all clinical findings (PF ratio, infiltrate pattern, pneumothorax, bronchopleural fistula) and wants to map them to a severity grade with exact-match validation. Do not use it to interpret raw imaging or blood gas values — it does not read radiographs or assay blood gas. Prefer this over generic severity tools when documentation or decision support must be traceable to the Pizov 1999 publication.

## Known failure modes

- Inputs do not match any Pizov 1999 definition — combination rejected
- PaO2/FiO2 ratio outside accepted range (20–600) returns validation error
- Missing required query parameters returns 400-class error
- Bronchopleural fistula true for mild or moderate grades causes rejection
- Pneumothorax true for mild grade causes rejection

## How this service works

Pizov 1999 blast lung injury severity. Mild, moderate, or severe only when inputs match a published definition: mild PaO2/FiO2 > 200, localized infiltrates, no pneumothorax; moderate 60 to 200, diffuse infiltrates, with or without pneumothorax; severe < 60, bilateral infiltrates, and bronchopleural fistula. Unmatched combinations are rejected. Caller assigns all findings. magent does not read a chest radiograph or assay blood gas. Not a ventilator prescription.

## Output

Returns the Pizov 1999 blast lung injury severity grade (mild, moderate, or severe) when the supplied combination of PaO2/FiO2 ratio, infiltrate pattern, pneumothorax, and bronchopleural fistula exactly matches a published definition. Unrecognized or inconsistent combinations are rejected with an error rather than a best-guess grade.

## 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": [
      "pf_ratio",
      "infiltrates",
      "pneumothorax",
      "bronchopleural_fistula"
     ],
     "properties": {
      "pf_ratio": {
       "type": "number",
       "description": "PaO2/FiO2 ratio in mm Hg (20-600). Pizov 1999 bands: >200 mild, 60 to 200 moderate, <60 severe. Caller-supplied; magent does not assay blood gas."
      },
      "infiltrates": {
       "type": "string",
       "description": "Lung infiltrate pattern as assigned by the caller: localized (mild), diffuse (moderate; Pizov 1999 diffuse bilateral or unilateral), or bilateral (severe). magent does not read a chest radiograph."
      },
      "pneumothorax": {
       "type": "boolean",
       "description": "true when the caller assigns pneumothorax. Mild requires false; moderate allows true or false; severe does not use this flag (Pizov 1999). magent does not read a chest radiograph."
      },
      "bronchopleural_fistula": {
       "type": "boolean",
       "description": "true when the caller assigns bronchopleural fistula. Required true for severe; mild and moderate require false so the combination matches a Pizov 1999 definition exactly. magent does not read a chest radiograph."
      }
     }
    }
   },
   "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/pizov-1999-blast-lung-injury-severity-calculator-7b28bc1a/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)
