Search hospice quality data by state, city, ZIP, or CMS star rating
Search hospice quality data by state, city, ZIP, or CMS star rating. Answers: which hospice meet quality thresholds in a market? Source: CMS Care Compare, monthly refresh.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
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": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"city": "example",
"state": "example",
"zip_prefix": "example"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"ccn": "450054",
"star_rating": 4,
"state": "TX"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/facilities/hospice/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"city": {
"type": "string"
},
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"offset": {
"default": 0,
"type": "integer"
},
"rating_max": {
"type": "number"
},
"rating_min": {
"type": "number"
},
"state": {
"type": "string"
},
"zip_prefix": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/facilities/hospice/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/facilities/hospice/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/facilities/hospice/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/14907.json, and this resource appears in /discovery/resources and /discovery/search.