CMS Care Compare quality record by CCN for a snf
CMS Care Compare quality record by CCN for a snf. Answers: what are the quality ratings and performance measures for this facility? Source: CMS Care Compare.
10000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-17
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": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"ccn": "450054",
"star_rating": 4
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/facilities/snf/:ccn",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/facilities/snf/:ccn" # -> 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/snf/:ccn");
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/snf/:ccn")
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/14893.json, and this resource appears in /discovery/resources and /discovery/search.