> For the complete documentation index, see [llms.txt](https://docs.dataplex-consulting.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset.md).

# CMS Data Feeds Dataset

### About the Dataset

The CMS Data Feeds Dataset is a comprehensive collection of all current and future CMS data feeds available on cms.data.gov. This dataset transforms each feed into a view, aligning all feed file attributes and casting them to appropriate datatypes. The views are automatically updated when new feed files arrive, and new views are included as CMS publishes new data feeds.

As of June 2026, the dataset encompasses 275 feeds and 5,125 feed files.

See the full list of feeds in the [CMS Data Feeds Catalog](/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog.md).

{% hint style="info" %}
**Get Full Access** | [Snowflake Marketplace](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset) | [Databricks](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) | [Databricks Marketplace](https://dbc-57d84859-e152.cloud.databricks.com/marketplace/provider/listings/7bfc94b8-8c6f-4706-96cd-5da0ba6766eb?o=3249760874003130) | [Free Trial](https://trial.dataplex-consulting.com)
{% endhint %}

### Dataset Features

* 267 billion records and growing
* 275 feeds with automatic addition of new feeds
* 9,583 feed attributes
* 19 years of historical data
* 1.2 TB of data, continuously expanding
* Daily updates to ensure data freshness
* Automatic quality checks and active monitoring
* Designed for seamless ingestion

### Data Quality and Maintenance

Dataplex Consulting & Data Products prioritizes data quality through:

* Automated data quality checks in all pipelines
* Daily monitoring of ingestion and ETL jobs
* Timely updates whenever CMS publishes new data
* Rigorous processes to ensure data integrity and reliability

### Business Applications

Users can leverage this dataset for various purposes, including:

* Enriching or augmenting existing datasets
* Analyzing published feed metrics over time
* Performing segmentation analysis
* Training machine learning models
* Conducting geospatial analysis
* Tracking healthcare trends and performance metrics

### Example Use Cases

* Analyze telehealth adoption trends across different states
* Evaluate the financial performance of home health agencies
* Track Medicare spending patterns by drug or geography
* Assess hospital performance metrics and patient satisfaction scores
* Monitor healthcare-associated infections across facilities

{% hint style="success" %}
**Ready to access CMS Data Feeds data?**

Questions? [Contact our team](mailto:support@dataplex-consulting.com) for a walkthrough.
{% endhint %}

| Platform       | Action                                                                                                                                                  |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Snowflake**  | [Get on Marketplace →](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset)              |
| **Databricks** | [Subscribe →](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) \| [Start 14-Day Free Trial →](https://trial.dataplex-consulting.com) |

### Data Structure

The dataset consists of three main components:

1. FEEDS: Contains metadata about each CMS data feed
2. FEEDS\_FILES: Stores information about individual files within each feed
3. Feed-specific views: Separate views for each feed (e.g., PatientReported\_Outcomes, Medicare\_Spending)

### Entity Relationship Diagram

![CMS Data Feeds Structure](/files/V4VpkHul0JDMigYqDyQ3)

### Sample Queries

{% tabs %}
{% tab title="Snowflake" %}

#### Get CMS Feeds to Table Mapping

```sql
SELECT title,
       description,
       references[0]::string AS cms_page_documentation,
       view_name AS table_name
FROM dwv.feeds f;
```

#### Find all Feed Views Related to Medicare

```sql
SELECT title, description, view_name
FROM dwv.feeds
WHERE array_contains('Medicare'::variant, keywords) = True;
```

#### Query All 2021 File Records for Medicare Inpatient Hospitals

```sql
SELECT ff.temporal_start,
       ff.temporal_end,
       v.*
FROM dwv.feeds f
JOIN dwv.feeds_files ff ON f.id = ff.feed_id
JOIN dwv.medicare_inpatient_hospitals__by_geography_and_service v ON ff.id = v.file_id
WHERE title = 'Medicare Inpatient Hospitals - by Geography and Service'
  AND year(ff.temporal_start) = 2021;
```

{% endtab %}

{% tab title="Databricks" %}

#### Get CMS Feeds to Table Mapping

```sql
SELECT title,
       description,
       get_json_object(references, '$[0]') AS cms_page_documentation,
       view_name AS table_name
FROM cms_dwv.feeds f;
```

#### Find all Feed Views Related to Medicare

```sql
SELECT title, description, view_name
FROM cms_dwv.feeds
WHERE array_contains(from_json(keywords, 'array<string>'), 'Medicare');
```

#### Query All 2021 File Records for Medicare Inpatient Hospitals

```sql
SELECT ff.temporal_start,
       ff.temporal_end,
       v.*
FROM cms_dwv.feeds f
JOIN cms_dwv.feeds_files ff ON f.id = ff.feed_id
JOIN cms_dwv.medicare_inpatient_hospitals__by_geography_and_service v ON ff.id = v.file_id
WHERE title = 'Medicare Inpatient Hospitals - by Geography and Service'
  AND year(ff.temporal_start) = 2021;
```

{% endtab %}
{% endtabs %}

## 📊 Recent Feed File Updates

*Recent CMS feed file updates (last 30 days)*

| Date      | Feed                                                                                                                                                                                                                                                                                                                   | Data Period             |
| --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
| 6/18/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 6/7/2026 to 6/13/2026   |
| 6/18/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 6/7/2026 to 6/13/2026   |
| 6/18/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 6/7/2026 to 6/13/2026   |
| 6/18/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 6/7/2026 to 6/13/2026   |
| 6/18/2026 | [Medicare Telehealth Trends](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-telehealth-trends)                                                                                                                                                               | 10/1/2025 to 12/31/2025 |
| 6/17/2026 | [Hospital All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-all-owners)                                                                                                                                                                             | 5/1/2026 to 5/31/2026   |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - insulin\_beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-insulin_beneficiary_cost)           | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - plan\_data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-plan_data)                                          | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - excluded\_drugs](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-excluded_drugs)                                | 6/1/2026                |
| 6/17/2026 | [Hospice All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospice-all-owners)                                                                                                                                                                               | 4/1/2026 to 6/30/2026   |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-beneficiary_cost)                            | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - indication\_based\_coverage](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-indication_based_coverage)         | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - geographic\_locator](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-geographic_locator)                        | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - basic\_drugs\_formulary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-basic_drugs_formulary)                 | 6/1/2026                |
| 6/17/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - pharmacy\_network](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-pharmacy_network)                            | 6/1/2026                |
| 6/17/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#opioid-treatment-program-providers)                                                                                                                                               | 6/7/2026 to 6/13/2026   |
| 6/17/2026 | [Innovation Center Data and Reports](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#innovation-center-data-and-reports)                                                                                                                                               | 6/1/2026 to 6/30/2026   |
| 6/17/2026 | [Medicare Advantage Geographic Variation - National & State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-advantage-geographic-variation-national-state)                                                                                                   | 1/1/2022 to 12/31/2022  |
| 6/16/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 6/7/2026 to 6/13/2026   |
| 6/16/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 6/7/2026 to 6/13/2026   |
| 6/16/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 6/7/2026 to 6/13/2026   |
| 6/16/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 6/7/2026 to 6/13/2026   |
| 6/16/2026 | [Home Infusion Therapy Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#home-infusion-therapy-providers)                                                                                                                                                     | 5/31/2026 to 6/13/2026  |
| 6/12/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/31/2026 to 6/6/2026   |
| 6/12/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/31/2026 to 6/6/2026   |
| 6/12/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/31/2026 to 6/6/2026   |
| 6/12/2026 | [Facility Affiliation Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#facility-affiliation-data)                                                                                                                                                                 | 5/29/2026               |
| 6/12/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#opioid-treatment-program-providers)                                                                                                                                               | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Medicaid Opioid Prescribing Rates - by Geography](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicaid-opioid-prescribing-rates-by-geography)                                                                                                                     | 1/1/2024 to 12/31/2024  |
| 6/11/2026 | [Revoked Medicare Providers and Suppliers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#revoked-medicare-providers-and-suppliers)                                                                                                                                   | 1/1/2026 to 3/31/2026   |
| 6/11/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Market Saturation & Utilization Core-Based Statistical Areas](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#market-saturation-utilization-corebased-statistical-areas)                                                                                              | 1/1/2025 to 12/31/2025  |
| 6/11/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 5/1/2026 to 5/31/2026   |
| 6/11/2026 | [Medicare Part D Opioid Prescribing Rates - by Geography](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-part-d-opioid-prescribing-rates-by-geography)                                                                                                       | 1/1/2024 to 12/31/2024  |
| 6/11/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/31/2026 to 6/6/2026   |
| 6/11/2026 | [Market Saturation & Utilization State-County](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#market-saturation-utilization-statecounty)                                                                                                                              | 1/1/2025 to 12/31/2025  |
| 6/11/2026 | [Nursing Home Chain Performance Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-home-chain-performance-measures)                                                                                                                                     | 5/1/2026 to 5/31/2026   |
| 6/10/2026 | [Hospice - Provider Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospice-provider-data)                                                                                                                                                                       | 5/1/2026                |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2022 to 12/31/2022  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2020 to 12/31/2020  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2018 to 12/31/2018  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2021 to 12/31/2021  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2017 to 12/31/2017  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2024 to 12/31/2024  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2023 to 12/31/2023  |
| 6/8/2026  | [Medicare Home Health Patients and Visits by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-home-health-patients-and-visits-by-state)                                                                                                                 | 1/1/2019 to 12/31/2019  |
| 6/5/2026  | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/24/2026 to 5/30/2026  |
| 6/5/2026  | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/24/2026 to 5/30/2026  |
| 6/5/2026  | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/24/2026 to 5/30/2026  |
| 6/5/2026  | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/24/2026 to 5/30/2026  |
| 6/3/2026  | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/24/2026 to 5/30/2026  |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 6/1/2024 to 6/30/2024   |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 1/1/2025 to 1/31/2025   |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 1/1/2026 to 1/31/2026   |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 4/1/2025 to 4/30/2025   |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 12/1/2025 to 12/31/2025 |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 12/1/2023 to 12/31/2023 |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 9/1/2024 to 9/30/2024   |
| 6/3/2026  | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                     | 12/1/2024 to 12/31/2024 |
| 6/2/2026  | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/24/2026 to 5/30/2026  |
| 6/2/2026  | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/24/2026 to 5/30/2026  |
| 6/2/2026  | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/24/2026 to 5/30/2026  |
| 6/2/2026  | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#opioid-treatment-program-providers)                                                                                                                                               | 5/24/2026 to 5/30/2026  |
| 6/2/2026  | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/24/2026 to 5/30/2026  |
| 6/2/2026  | [Home Infusion Therapy Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#home-infusion-therapy-providers)                                                                                                                                                     | 5/17/2026 to 5/30/2026  |
| 6/1/2026  | [CMS National Health Expenditure Accounts - Health Spending by State of Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-state-of-provider)                                                       | 12/1/2023               |
| 6/1/2026  | [CMS National Health Expenditure Accounts - Health Spending by Age and Sex](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-age-and-sex)                                                                   | 12/1/2023               |
| 6/1/2026  | [CMS National Health Expenditure Accounts - National by Type of Service & Source of Funds](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-national-by-type-of-service-source-of-funds)                                       | 12/1/2025               |
| 6/1/2026  | [CMS National Health Expenditure Accounts - Health Spending by State of Residence](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-state-of-residence)                                                     | 12/1/2022               |
| 6/1/2026  | [Revalidation Reassignment List](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#revalidation-reassignment-list)                                                                                                                                                       | 6/1/2026 to 6/30/2026   |
| 6/1/2026  | [Revalidation Due Date List](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#revalidation-due-date-list)                                                                                                                                                               | 6/1/2026 to 6/30/2026   |
| 6/1/2026  | [Revalidation Clinic Group Practice Reassignment](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#revalidation-clinic-group-practice-reassignment)                                                                                                                     | 6/1/2026 to 6/30/2026   |
| 5/31/2026 | [CMS National Health Expenditure Accounts - Health Spending by State of Residence](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-state-of-residence)                                                     | 12/1/2022               |
| 5/31/2026 | [CMS National Health Expenditure Accounts - Health Spending by State of Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-state-of-provider)                                                       | 12/1/2023               |
| 5/31/2026 | [CMS National Health Expenditure Accounts - National by Type of Service & Source of Funds](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-national-by-type-of-service-source-of-funds)                                       | 12/1/2025               |
| 5/31/2026 | [CMS National Health Expenditure Accounts - Health Spending by Age and Sex](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#cms-national-health-expenditure-accounts-health-spending-by-age-and-sex)                                                                   | 12/1/2023               |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                   | 1/1/2014 to 12/31/2014  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2015 to 12/31/2015  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2019 to 12/31/2019  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2020 to 12/31/2020  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-longterm-care-hospital-by-geography-and-provider)                                       | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                  | 1/1/2016 to 12/31/2016  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2021 to 12/31/2021  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service) | 1/1/2018 to 12/31/2018  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2017 to 12/31/2017  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-hospice-by-geography-and-provider)                                                                      | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-and-provider)                                                | 1/1/2023 to 12/31/2023  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                    | 1/1/2022 to 12/31/2022  |
| 5/30/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#medicare-postacute-care-utilization-home-health-agency-by-geography-provider-and-service)                               | 1/1/2016 to 12/31/2016  |
| 5/29/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/17/2026 to 5/23/2026  |
| 5/29/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/17/2026 to 5/23/2026  |
| 5/29/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/17/2026 to 5/23/2026  |
| 5/29/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/17/2026 to 5/23/2026  |
| 5/28/2026 | [Nursing Homes Including Rehab Services - Citation Code Lookup](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-citation-code-lookup)                                                                                           | 5/1/2026                |
| 5/28/2026 | [Nursing Homes Including Rehab Services - Medicare Claims Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-medicare-claims-quality-measures)                                                                   | 5/1/2026                |
| 5/28/2026 | [Nursing Homes Including Rehab Services - Penalties](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-penalties)                                                                                                                 | 5/1/2026                |
| 5/28/2026 | [Nursing Homes Including Rehab Services - State US Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-state-us-averages)                                                                                                 | 5/1/2026                |
| 5/28/2026 | [Nursing Homes Including Rehab Services - Survey Summary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-survey-summary)                                                                                                       | 5/1/2026                |
| 5/28/2026 | [Skilled Nursing Facility Quality Reporting Program - Provider Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#skilled-nursing-facility-quality-reporting-program-provider-data)                                                                                 | 5/1/2026                |
| 5/28/2026 | [Nursing Homes Including Rehab Services - Ownership](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-ownership)                                                                                                                 | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - Inspection Dates](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-inspection-dates)                                                                                                   | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - Provider Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-provider-information)                                                                                           | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - Health Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-health-deficiencies)                                                                                             | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - MDS Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-mds-quality-measures)                                                                                           | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - State Inspection Cut Points](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-state-inspection-cut-points)                                                                             | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - Data Collection Intervals](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-data-collection-intervals)                                                                                 | 5/1/2026                |
| 5/27/2026 | [Nursing Homes Including Rehab Services - Fire Safety Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#nursing-homes-including-rehab-services-fire-safety-deficiencies)                                                                                   | 5/1/2026                |
| 5/26/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-non-physicians)                                                                                                             | 5/17/2026 to 5/23/2026  |
| 5/26/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#order-and-referring)                                                                                                                                                                             | 5/17/2026 to 5/23/2026  |
| 5/26/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#opioid-treatment-program-providers)                                                                                                                                               | 5/17/2026 to 5/23/2026  |
| 5/26/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                 | 5/17/2026 to 5/23/2026  |
| 5/26/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#pending-initial-logging-and-tracking-physicians)                                                                                                                     | 5/17/2026 to 5/23/2026  |
| 5/26/2026 | [Opt Out Affidavits](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog#opt-out-affidavits)                                                                                                                                                                               | 4/1/2026 to 4/30/2026   |

## 🆕 Recently Added Feeds

### Hospice - Provider Data (Added: June 2026)

**What's in this data**: This dataset contains provider-level hospice quality measures and denominator rows sourced from CMS. Each entry represents a unique hospice provider's performance on various quality measures over specified reporting periods, allowing for analysis of service quality and accessibility.

**How you can use it**:

* Evaluate the quality of hospice care across different providers and regions.
* Identify trends in hospice service utilization over time.
* Compare performance metrics among hospice providers to inform patient choice.

**Example Queries**:

*Count the number of hospice providers offering care in various settings (e.g., home, nursing facility) for the latest data.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT measure_name, count(DISTINCT cms_certification_number_ccn) AS provider_count
FROM dwv.hospice_provider_data t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY measure_name
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT measure_name, count(DISTINCT cms_certification_number_ccn) AS provider_count
FROM cms_dwv.hospice_provider_data t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY measure_name
```

{% endtab %}
{% endtabs %}

*Compare the scores of hospice providers in a specific city for the latest reporting period.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT facility_name, score
FROM dwv.hospice_provider_data t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND city_town = 'PHOENIX'
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT facility_name, score
FROM cms_dwv.hospice_provider_data t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND city_town = 'PHOENIX'
```

{% endtab %}
{% endtabs %}

### Medicare Home Health Patients and Visits by State (Added: June 2026)

**What's in this data**: This dataset provides insights into the utilization of home health services among Medicare beneficiaries across different states and territories in the United States. It includes key metrics such as total reimbursements, number of patients receiving care, and number of visits, which are essential for understanding healthcare access and resource allocation.

**How you can use it**:

* Analyze trends in home health service utilization across states over time.
* Evaluate the average reimbursement per patient to identify disparities in funding.
* Assess the volume of visits to understand the demand for home health services in different regions.

**Example Queries**:

*This query shows the total reimbursement and number of patients for each state.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT __state, sum(reimbursement) AS total_reimbursement,
       sum(patients) AS total_patients
FROM dwv.medicare_home_health_patients_and_visits_by_state t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY __state
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT __state, sum(reimbursement) AS total_reimbursement,
       sum(patients) AS total_patients
FROM cms_dwv.medicare_home_health_patients_and_visits_by_state t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY __state
```

{% endtab %}
{% endtabs %}

*This query shows the average visits per patient by state, indicating the intensity of care.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT __state, avg(average_visits_per_patient) AS avg_visits_per_patient
FROM dwv.medicare_home_health_patients_and_visits_by_state t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY __state
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT __state, avg(average_visits_per_patient) AS avg_visits_per_patient
FROM cms_dwv.medicare_home_health_patients_and_visits_by_state t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY __state
```

{% endtab %}
{% endtabs %}

### CMS National Health Expenditure Accounts - Health Spending by State of Residence (Added: May 2026)

**What's in this data**: This dataset contains personal health care spending information categorized by state of residence, payer type, and health care measures from 1991 to 2020. It provides insights into trends in health care spending, enabling policymakers and stakeholders to understand regional variations and the impact of different payers on health care costs.

**How you can use it**:

* Analyze trends in health care spending over time by state and payer type.
* Evaluate the impact of different health care measures on population health outcomes across states.
* Support resource allocation and policy-making decisions based on historical spending patterns.

**Example Queries**:

*This query retrieves the total aggregate health care spending for all payers by state for the year 2020.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT state_name, sum(value) AS total_spending
FROM dwv.nhe_state_residence t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND YEAR = 2020
  AND measure = 'AGGREGATE'
GROUP BY state_name
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT state_name, sum(value) AS total_spending
FROM cms_dwv.nhe_state_residence t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND YEAR = 2020
  AND measure = 'AGGREGATE'
GROUP BY state_name
```

{% endtab %}
{% endtabs %}

*This query calculates the average per-enrollee spending for Medicare across all states from 2010 to 2020.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT state_name, avg(value) AS average_per_enrollee
FROM dwv.nhe_state_residence t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND payer = 'MEDICARE'
  AND measure = 'PER_ENROLLEE'
  AND YEAR BETWEEN 2010 AND 2020
GROUP BY state_name
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT state_name, avg(value) AS average_per_enrollee
FROM cms_dwv.nhe_state_residence t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND payer = 'MEDICARE'
  AND measure = 'PER_ENROLLEE'
  AND YEAR BETWEEN 2010 AND 2020
GROUP BY state_name
```

{% endtab %}
{% endtabs %}

📋 [View the complete CMS Data Feeds Catalog](/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog.md)

***

## Get Started

{% hint style="success" %}
**CMS Medicare/Medicaid Data Access**

### Choose Your Platform

{% endhint %}

| Platform       | Get Access                                                                                                                                                                                                                                 | Free Trial                                                         |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------ |
| **Snowflake**  | [Get on Marketplace →](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset)                                                                                                 | Available via Marketplace                                          |
| **Databricks** | [Subscribe →](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) or [Marketplace →](https://dbc-57d84859-e152.cloud.databricks.com/marketplace/provider/listings/7bfc94b8-8c6f-4706-96cd-5da0ba6766eb?o=3249760874003130) | [Start 14-Day Free Trial →](https://trial.dataplex-consulting.com) |

|                  |                                                  |
| ---------------- | ------------------------------------------------ |
| **Includes**     | All 232 feeds, daily updates, full documentation |
| **Support**      | Email support included                           |
| **Cancellation** | Cancel anytime, no long-term commitment          |

### Support and Contact

For questions or assistance with the CMS Data Feeds Dataset, please contact:

Email: <support@dataplex-consulting.com>

The Dataplex Consulting & Data Products team monitors ingestion and ETL jobs daily to ensure quality and timely delivery.

### About Dataplex

Dataplex Consulting & Data Products delivers turnkey, analytics-ready data products that make complex public and commercial data easy to use across modern data platforms. Our data pipelines include automated quality checks and active monitoring to ensure timely, reliable, and well-structured data that is ready for downstream analytics, machine learning, and operational use.

In addition to data products, Dataplex provides data engineering and analytics consulting services to organizations of all sizes. We bring deep, hands-on experience supporting both early-stage companies and large enterprises, helping teams build scalable data platforms, improve data reliability, and become more data-driven.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
