Search hospital price-transparency negotiated rates by billing code (CPT/HCPCS/MS-DRG), st
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.
30000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-18
updated
Provider
api.healthparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x177eA123A35253ba8869A7e21E717978e482351D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"billing_code": "example",
"billing_code_type": "example",
"state": "example"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"billing_code": "70450",
"ccn": "450054",
"negotiated_rate": 412.5,
"payer_name_canonical": "Aetna"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/prices/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"billing_code": {
"type": "string"
},
"billing_code_type": {
"type": "string"
},
"ccn": {
"type": "string"
},
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"payer": {
"type": "string"
},
"rate_type": {
"type": "string"
},
"state": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/prices/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.healthparse.io/v1/prices/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.healthparse.io/v1/prices/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14901.json, and this resource appears in /discovery/resources and /discovery/search.