MAGENT

Respiratory · LIVE

Pediatric Asthma Severity Score (PASS)

PASS

Sum three caller-assigned Gorelick 2004 PASS item points and return the published 0-6 total.

LIVE $0.005 USDC GET /api/calc/pass

Markdown: /docs/pass.md · Canonical: https://magentlab.com/docs/pass

Not a medical device. Not a diagnosis, dose, or listing recommendation.

What it computes

Sum three caller-assigned Gorelick 2004 PASS item points and return the published 0-6 total.

When to use

When an agent has already assigned published Gorelick 2004 points for wheezing, work of breathing, and prolongation of expiration and needs the 0-6 total. magent does not auscultate or diagnose asthma.

When not to use

  • Not a medical device and not an asthma diagnosis or a treatment or admission order.
  • Each of the three items is a caller-assigned published point value from Gorelick 2004. magent does not auscultate or examine the patient.
  • Three-item PASS selected in Gorelick 2004, max 6. Score only; magent does not emit mild/moderate/severe or GINA bands.
  • Gorelick 2004 enrolled ages 1-18 years; this tool does not take an age parameter and does not validate age.
  • Not Chalut 2000 PRAM. Not hospital Pediatric Asthma Score (PAS) pathways. Not Westley 1978 croup. magent pas is Samuel 2002 pediatric appendicitis, a different score.

Formula

PASS = wheezing + work_of_breathing + prolongation_of_expiration; Gorelick 2004 caller-assigned points; each item 0/1/2; max 6

Citation

Title
Performance of a novel clinical score, the Pediatric Asthma Severity Score (PASS), in the evaluation of acute asthma
Authors
Gorelick MH, Stevens MW, Schultz TR, Scribano PV
Source
Acad Emerg Med. 2004;11(1):10-18
DOI
10.1197/j.aem.2003.07.015

Worked example

All items 0

Given: prolongation_of_expiration=0wheezing=0work_of_breathing=0

  1. wheezing 0 + work_of_breathing 0 + prolongation_of_expiration 0
  2. Score = 0 (max 6)

Maximum 6

Given: prolongation_of_expiration=2wheezing=2work_of_breathing=2

  1. wheezing 2 + work_of_breathing 2 + prolongation_of_expiration 2
  2. Score = 6 (max 6)

Also searched as

  • Pediatric Asthma Severity Score
  • PASS
  • Gorelick PASS
  • PASS asthma
  • three-item PASS
  • Gorelick 2004 PASS
  • acute asthma PASS
  • PASS score

Try

Opens the live endpoint. Unpaid browser requests show the paywall; agents should send Accept: application/json.

/api/calc/pass?wheezing=0&work_of_breathing=0&prolongation_of_expiration=0

Full URL: https://api.magentlab.com/api/calc/pass?wheezing=0&work_of_breathing=0&prolongation_of_expiration=0

Call

Expect HTTP 402 until you retry with PAYMENT-SIGNATURE. Incomplete query params return HTTP 400 before any quote or charge.

curl -i -H "Accept: application/json" "https://api.magentlab.com/api/calc/pass?wheezing=0&work_of_breathing=0&prolongation_of_expiration=0"

Parameters

Name Type Required Description
wheezing integer required Caller-assigned Gorelick 2004 PASS wheezing (integer 0, 1, or 2): 0 none or mild; 1 moderate; 2 severe wheezing or absent due to poor air exchange. magent does not auscultate.
work_of_breathing integer required Caller-assigned Gorelick 2004 PASS work of breathing (integer 0, 1, or 2): 0 none or mild accessory-muscle use or retractions; 1 moderate; 2 severe. magent does not examine the patient.
prolongation_of_expiration integer required Caller-assigned Gorelick 2004 PASS prolongation of expiration (integer 0, 1, or 2): 0 normal or mildly prolonged; 1 moderately prolonged; 2 severely prolonged. magent does not auscultate.

Bulk (POST)

POST the same path with a JSON items array. The first item is the GET unit; each additional item is $0.002. Invalid items return HTTP 400 before settlement.

POST /api/calc/pass Max 25 unit_amount + extra_item_amount * (n - 1) extra $0.002 PREVIEW

  • 1 to 25 items. Each item uses the same keys as the GET query parameters.
  • POST of 1 item costs the same as GET. Lists longer than 25: chunk into multiple POSTs. Extra items still execute; do not pad dummy rows.
  • The first invalid item fails the whole request (index in the 400 JSON). You are not charged.
  • HTTP 200 is {count, path, items}. Each items[i] is the GET 200 body for that row.
  • Catalog misses (empty matches, found=false) stay paid 200s inside that slot.
  • x402 resource URL is this path plus n and body_sha256. Browsers that prefer text/html get the same paywall as GET; Pay retries POST with the same items.

Example request (fixture)

{
  "items": [
    {
      "prolongation_of_expiration": "0",
      "wheezing": "0",
      "work_of_breathing": "0"
    },
    {
      "prolongation_of_expiration": "0",
      "wheezing": "0",
      "work_of_breathing": "0"
    }
  ]
}

Open bulk paywall →

Opens a two-item fixture on the API host. Unpaid browsers get the same MetaMask paywall as GET; Pay retries POST with those items.

Example 200 (fixture)

{
  "count": 2,
  "path": "/api/calc/pass",
  "items": [
    {
      "components": [
        {
          "value": 0,
          "factor": "wheezing",
          "points": 0,
          "present": true
        },
        {
          "value": 0,
          "factor": "work_of_breathing",
          "points": 0,
          "present": true
        },
        {
          "value": 0,
          "factor": "prolongation_of_expiration",
          "points": 0,
          "present": true
        }
      ],
      "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "citation": {
        "authors": "Gorelick MH, Stevens MW, Schultz TR, Scribano PV",
        "doi": "10.1197/j.aem.2003.07.015",
        "id": "gorelick-2004",
        "pmid": "14709423",
        "source": "Acad Emerg Med. 2004;11(1):10-18",
        "title": "Performance of a novel clinical score, the Pediatric Asthma Severity Score (PASS), in the evaluation of acute asthma"
      },
      "formula": "pass",
      "formula_expression": "PASS = wheezing + work_of_breathing + prolongation_of_expiration; Gorelick 2004 caller-assigned points; each item 0/1/2; max 6",
      "max_score": 6,
      "score": 0
    },
    {
      "components": [
        {
          "value": 0,
          "factor": "wheezing",
          "points": 0,
          "present": true
        },
        {
          "value": 0,
          "factor": "work_of_breathing",
          "points": 0,
          "present": true
        },
        {
          "value": 0,
          "factor": "prolongation_of_expiration",
          "points": 0,
          "present": true
        }
      ],
      "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "citation": {
        "authors": "Gorelick MH, Stevens MW, Schultz TR, Scribano PV",
        "doi": "10.1197/j.aem.2003.07.015",
        "id": "gorelick-2004",
        "pmid": "14709423",
        "source": "Acad Emerg Med. 2004;11(1):10-18",
        "title": "Performance of a novel clinical score, the Pediatric Asthma Severity Score (PASS), in the evaluation of acute asthma"
      },
      "formula": "pass",
      "formula_expression": "PASS = wheezing + work_of_breathing + prolongation_of_expiration; Gorelick 2004 caller-assigned points; each item 0/1/2; max 6",
      "max_score": 6,
      "score": 0
    }
  ]
}

Response

Field Type Description
formula string pass
formula_expression string Exact expression used
score integer PASS points 0-6
max_score integer Always 6
components array Per-item caller-assigned points
citation object Gorelick et al. Acad Emerg Med 2004 citation
disclaimer string Not-a-device notice

Example JSON

Machine form of the same example. Frozen fixture. Not a live lookup.

{
  "components": [
    {
      "value": 0,
      "factor": "wheezing",
      "points": 0,
      "present": true
    },
    {
      "value": 0,
      "factor": "work_of_breathing",
      "points": 0,
      "present": true
    },
    {
      "value": 0,
      "factor": "prolongation_of_expiration",
      "points": 0,
      "present": true
    }
  ],
  "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
  "citation": {
    "authors": "Gorelick MH, Stevens MW, Schultz TR, Scribano PV",
    "doi": "10.1197/j.aem.2003.07.015",
    "id": "gorelick-2004",
    "pmid": "14709423",
    "source": "Acad Emerg Med. 2004;11(1):10-18",
    "title": "Performance of a novel clinical score, the Pediatric Asthma Severity Score (PASS), in the evaluation of acute asthma"
  },
  "formula": "pass",
  "formula_expression": "PASS = wheezing + work_of_breathing + prolongation_of_expiration; Gorelick 2004 caller-assigned points; each item 0/1/2; max 6",
  "max_score": 6,
  "score": 0
}

Client errors (HTTP 400)

Invalid params return 400 without charge. Shared HTTP 402 and 503 meanings: Payments.

HTTP Code When
400 invalid_pass_item wheezing, work_of_breathing, and prolongation_of_expiration must each be an integer 0, 1, or 2 (Gorelick 2004 PASS). Returned before settlement; you are not charged.
400 invalid_items POST body must be a JSON object with only an items array Returned before settlement; you are not charged.
400 invalid_item_count items must be an array of 1 to 25 objects Returned before settlement; you are not charged.
400 invalid_item each items entry must be a JSON object Returned before settlement; you are not charged.

Related tools

  • PRAM — Sum five caller-assigned Chalut 2000 PRAM item points and return the published 0-12 total.
  • Westley croup — Sum the Westley 1978 croup clinical score from caller-assigned consciousness, cyanosis, stridor, air entry, and retractions (maximum 17).

Payment

Unpaid requests return HTTP 402 even if query parameters or POST items are missing or invalid, so CDP and agents can index the path. After a PAYMENT-SIGNATURE, invalid params return HTTP 400 JSON before settlement. magent does not charge. Fix the params, then request a new 402 quote for that complete URL. Catalog misses (empty matches, found=false) are valid paid 200s. Unpaid valid requests return HTTP 402 with a base64 PAYMENT-REQUIRED header. HTTP 503 is not a new quote: retry the same PAYMENT-SIGNATURE. Full handshake and shared payment errors: Payments. Stdio MCP: /docs/mcp.

Guarantees

  • HTTP 402 is unpaid, including a missing query. After PAYMENT-SIGNATURE, invalid parameters return HTTP 400 before settlement. You are not charged. HTTP 402 never includes the tool JSON.
  • exact: settlement finishes before the tool (paymentFlow upfront). batch-settlement: verify/deposit before the tool; chargedCumulativeAmount commits after HTTP 2xx. Uncertain or failed settlement fails closed (HTTP 503). Retry the same PAYMENT-SIGNATURE.
  • HTTP 402 is unpaid only. Do not sign a second authorization because of a 503.
  • Execution is timeout-bounded and concurrency-capped.
  • Calculator inputs are stored encrypted for allowlisted operators (Magent Console). They are not in public logs, SSH lookups, catalog, or rollups. Request logs store path without query.