What does a hospital's Medicare cost report show for staffing? Search the flattened HCRIS
What does a hospital's Medicare cost report show for staffing? Search the flattened HCRIS S-3 (CMS 'Hospital Provider Cost Report') by state, CCN, name, fiscal year, control_type, or min_beds. Returns FTE employees, beds, discharges, salaries, contract labor, plus computed FTE-per-bed and FTE-per-1k-discharges staffing ratios. CMS 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": {
"ccn": "450078",
"name": "Memorial",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"ccn": "450078",
"fiscal_year": 2023,
"fte_employees": 1840.5,
"fte_per_1k_discharges": 101,
"fte_per_bed": 4.489,
"hospital_name": "EXAMPLE REGIONAL MEDICAL CENTER",
"number_of_beds": 410,
"state": "TX",
"total_discharges": 18220
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/hcris/cost-reports/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"ccn": {
"description": "Provider CCN(s), CSV.",
"examples": [
"450078"
],
"type": "string"
},
"control_type": {
"description": "Type of control fragment.",
"examples": [
"Proprietary"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"min_beds": {
"description": "Minimum number of beds.",
"examples": [
"100"
],
"type": "string"
},
"name": {
"description": "Hospital name fragment.",
"examples": [
"Memorial"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"sort": {
"description": "fte_employees | number_of_beds | total_discharges | fiscal_year :asc|:desc.",
"examples": [
"number_of_beds:desc"
],
"type": "string"
},
"state": {
"description": "Hospital state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
},
"year": {
"description": "Fiscal year(s), CSV.",
"examples": [
"2023"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/hcris/cost-reports/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/hcris/cost-reports/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/hcris/cost-reports/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/14557.json, and this resource appears in /discovery/resources and /discovery/search.