Which hospitals' emergency-department throughput is degrading period-over-period
Which hospitals' emergency-department throughput is degrading period-over-period? Windows the CMS Timely & Effective Care snapshots to compute each hospital's latest-vs-prior change on a measure (default OP_18b median ED time; higher = worse). Filter by measure, state, facility_id, direction (worse | better | any), min_pct_change, min_delta, and min_sample. Returns latest_score, prior_score, delta, and pct_change — the founder's ED-staffing-pressure tell. CMS Care Compare public-domain records.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.govparse.io/v1/cms/timely-care/delta
| Category | Everything else |
|---|---|
| Provider host | api.govparse.io |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.25 | 264 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"facility_id": "140117",
"measure": "OP_18b",
"state": "IL"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"direction": {
"description": "worse (default) | better | any.",
"examples": [
"worse"
],
"type": "string"
},
"facility_id": {
"description": "CMS CCN(s), CSV.",
"examples": [
"140117"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"measure": {
"description": "Measure id to compare across periods (default OP_18b).",
"examples": [
"OP_18b"
],
"type": "string"
},
"min_delta": {
"description": "Minimum absolute change in the chosen direction.",
"examples": [
"30"
],
"type": "string"
},
"min_pct_change": {
"description": "Minimum period-over-period % change in the chosen direction.",
"examples": [
"10"
],
"type": "string"
},
"min_sample": {
"description": "Minimum latest-period sample size.",
"examples": [
"100"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"state": {
"description": "Hospital state code(s), CSV.",
"examples": [
"IL"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}