How is a hospital's emergency department performing on CMS timely-care measures? Search CM
How is a hospital's emergency department performing on CMS timely-care measures? Search CMS 'Timely and Effective Care - Hospital' by state, facility_id (CCN), measure (OP_18b median ED time, OP_22 left-without-being-seen, SEP_1...), condition, city, min/max score, reporting-period end, or latest_only. Returns per-hospital score, sample, measure period, and snapshot. CMS Care Compare public-domain records.
1250000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-11
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"facility_id": "100001",
"measure": "OP_18b",
"state": "FL"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"facility_id": "100128",
"facility_name": "TAMPA GENERAL HOSPITAL",
"measure_id": "OP_18b",
"period_end": "2025-06-30",
"period_start": "2024-07-01",
"sample": 1219,
"score": 232,
"state": "FL"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/cms/timely-care/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"city": {
"description": "City fragment.",
"examples": [
"Miami"
],
"type": "string"
},
"condition": {
"description": "Condition fragment.",
"examples": [
"Emergency Department"
],
"type": "string"
},
"facility_id": {
"description": "CMS CCN(s), CSV.",
"examples": [
"100001"
],
"type": "string"
},
"latest_only": {
"description": "true = only each facility×measure's most recent period.",
"examples": [
"true"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"max_score": {
"description": "Maximum numeric score.",
"examples": [
"500"
],
"type": "string"
},
"measure": {
"description": "Measure id(s), CSV (OP_18b, OP_22, SEP_1...).",
"examples": [
"OP_18b"
],
"type": "string"
},
"min_score": {
"description": "Minimum numeric score.",
"examples": [
"200"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"period_end": {
"description": "Exact reporting-period end date (YYYY-MM-DD).",
"examples": [
"2025-06-30"
],
"type": "string"
},
"sort": {
"description": "score | sample | period_end :asc|:desc.",
"examples": [
"score:desc"
],
"type": "string"
},
"state": {
"description": "Hospital state code(s), CSV.",
"examples": [
"FL"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/cms/timely-care/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.govparse.io/v1/cms/timely-care/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.govparse.io/v1/cms/timely-care/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/14559.json, and this resource appears in /discovery/resources and /discovery/search.