# HealthParse Hospital Price Transparency Search

> HealthParse Hospital Price Transparency Search is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search negotiated rates from hospital machine-readable files by billing code (CPT/HCPCS/MS-DRG), payer, state, hospital CCN, or rate type

## Facts

- Endpoint: GET https://api.healthparse.io/v1/prices/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-hospital-price-transparency-search-2a8687ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ane4aitOMZ-wc1sL8PcrV

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 healthparse-hospital-price-transparency-search-2a8687ba
```

Example prompt: What do major payers actually pay for CPT code 27447 (total knee replacement) at hospitals in Ohio — pull up to 50 negotiated rates from hospital price transparency files and show me the payer and rate for each?

## When to prefer this

Use this endpoint when you need actual payer-negotiated rates at specific hospitals sourced directly from hospital-published machine-readable files (MRFs) under the CMS price transparency rule. Prefer this over national averages when you need facility-specific or payer-specific granularity, or when comparing what different insurers pay for the same procedure. Use the sibling national statistics endpoint if you want aggregate price benchmarks instead of individual negotiated rates.

## Known failure modes

- No results found for the given billing code or payer combination — returned empty result set
- Invalid billing_code_type value causes a 400 validation error
- CCN not found in MRF dataset returns empty list
- Rate data may be stale if hospitals haven't updated their MRFs recently
- Overly broad queries (e.g., no filters) may hit result caps and require pagination
- Payer name spelling mismatches may return no results due to string matching

## How this service works

Search hospital price-transparency negotiated rates by billing code (CPT/HCPCS/MS-DRG), state, payer, hospital CCN, or rate type. Answers: what do payers actually pay for this procedure at these hospitals? Source: hospital-published MRFs.

## Output

Returns a paginated list of negotiated rate records from hospital machine-readable files, each including billing code, billing code type, payer name, hospital CCN, rate type, and the actual negotiated dollar amount — up to 100 results per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "ccn": {
     "type": "string"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "payer": {
     "type": "string"
    },
    "state": {
     "type": "string"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "rate_type": {
     "type": "string"
    },
    "billing_code": {
     "type": "string"
    },
    "billing_code_type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-hospital-price-transparency-search-2a8687ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.healthparse.io](https://www.zero.xyz/host/api.healthparse.io/llms.txt)
