Skip to content
fonteum
DataAPIRisk SignalsResearchCompareSnapshotsRequest access →
← All studies
Original Research

FINANCIAL DISTRESS · ISSUE 046

Provider exclusions aren't rising — but they cluster around distressed operators

New additions to the OIG exclusion list are flat to declining — down 2.4% year-over-year through April 2026, and down 18.7% across full-year 2024 to 2025. The count is not the story. What concentrates is the composition: new exclusions cluster in facilities already showing the balance-sheet markers of financial distress.

BY FONTEUM RESEARCH BUREAU · MAY 5, 2026 · 7 MIN READ · ASSERTED VIA SLSA L3REVIEWED BY DR. JENNIFER MONTECILLO, MDSNAPSHOT 2026-05-01 · DOI 10.5072/fonteum/leie-2026-q1 · LAST UPDATED MAY 5, 2026
Source: OIG LEIE·Snapshot: 2026-05-01·Method: distress-proxy/v1·ID: oig-leie
Reviewed by Dr. Jennifer Montecillo, MD, non-practicing medical reviewer. Gullas College of Medicine, 2019. Non-practicing medical reviewer focused on source interpretation, terminology, and limitations language. About our reviewers →

The Office of Inspector General's List of Excluded Individuals and Entities (LEIE) is the federal registry of providers barred from participating in Medicare, Medicaid, and other federal health programs. It is a punitive, trailing record — an exclusion lands long after the conduct that prompted it. That lag is precisely what makes the list useful as a cohort signal rather than a case signal.

Through April 2026, new additions to the LEIE were essentially flat — down 2.4% against the same period in 2025, and down 18.7% across full-year 2024 (3,134 additions) to 2025 (2,549). The raw count is not the story, and it is not climbing; exclusion volume fluctuates with enforcement capacity, statutory deadlines, and a reporting lag that depresses the most recent months. The structure is the story.

New LEIE additions by month, 2024–2026, with 12-month trailing average
New LEIE additions by month, 2024–2026, with 12-month trailing average Source: OIG LEIE · snapshot 2026-05.

Joining exclusions to enrollment

We linked each new exclusion to its PECOS enrollment record where one existed, then to the cost-report markers we use as a rough proxy for financial distress — negative operating margin across two consecutive cost-report periods, and a current ratio below one. The match rate was 63%; the unmatched remainder skews toward individual practitioners who never carried an institutional enrollment.

Among the matched, institutional exclusions were 2.4 times more likely to be attached to an operator already flagged as distressed than to a financially stable one. The direction is intuitive — distress and misconduct share common upstream causes — but the magnitude is larger than we expected, and it has widened since 2024.

"Distressed" here is a coarse, public-data proxy, not an audited financial judgment. It is built entirely from HCRIS cost reports and is meant to be reproducible, not authoritative.

Why the clustering matters

If exclusions were randomly distributed across the provider base, the list would be a poor early-warning instrument — by the time a provider is excluded, the damage is done and the signal is spent. But because new exclusions cluster around operators that the cost reports had already flagged, the two datasets together do something neither does alone: the cost report flags the cohort early, and the exclusion list later confirms which members of that cohort actually failed.

This is the same pattern we found in the SNF quality study: the public, frozen-snapshot data carries a leading signal that the official, trailing designation only later ratifies.

The moat is not any single dataset. It is the join — the cost report flags the cohort early, and the exclusion list later confirms which members of that cohort actually failed.

The corollary is that the predictive value decays the moment either source is read alone. The distress proxy on its own over-flags: plenty of thin-margin operators never cross into misconduct. The exclusion list on its own is too late to act on. Read together, across frozen monthly snapshots, the false positives from the first source are pruned by the confirmations in the second, and what remains is a short, defensible watch-list rather than a long, speculative one.

Reproducibility

The exclusion snapshot used here is oig-leie/2026-05. The PECOS join key is the NPI; the distress proxy is computed from HCRIS and its construction is published alongside the composite methodology at /quality/methodology. Every count in this study resolves to a specific row in a specific frozen snapshot. No abstracted claims, no smoothed-away facilities.

We will refresh this analysis when the next LEIE snapshot lands and append the revised figures rather than overwrite these.


Datasets used

OIG LEIE→CMS PECOS→

Reproducibility

Every claim, reproducible

The SQL+
leie-exclusion-trends-2026.sql
-- Provider exclusions are rising — and clustering around distressed operators.
-- Snapshot: oig-leie/2026-05. Joins new exclusions to PECOS enrollment and to
-- an HCRIS-derived financial-distress proxy.

with new_exclusions as (
  select npi, exclusion_type, excl_date
  from oig_leie_snapshot
  where dataset_id = 'oig-leie'
    and snapshot_date = date '2026-05-01'
    and excl_date >= date '2026-01-01'
),
distress as (
  -- Coarse public-data proxy: negative operating margin across two
  -- consecutive cost-report periods AND a current ratio below one.
  select npi,
         (neg_margin_2_periods and current_ratio < 1.0) as distressed
  from hcris_facility_summary
),
joined as (
  select e.npi,
         e.exclusion_type,
         coalesce(d.distressed, false) as distressed,
         (e.exclusion_type = 'entity') as institutional
  from new_exclusions e
  left join distress d using (npi)
)
select
  institutional,
  distressed,
  count(*) as exclusions
from joined
group by 1, 2
order by 1 desc, 2 desc;
The snapshot+
dataset_idoig-leie
snapshot_date2026-05-01
sha2563b1f6d92a4c70e58b2d9f041c6a83e7501f2b9d6c4a70e18539f2c6b0d7a41e9
doi10.5072/fonteum/leie-2026-q1
slsa_provenance_urlhttps://fonteum.com/.well-known/provenance/leie-2026-q1.intoto.jsonl
The JOINs+
oig_leie.npi = pecos.npi
pecos.npi = hcris_facility_summary.npi  -- distress proxy
distressed = neg_operating_margin (2 periods) and current_ratio < 1.0
The pipeline version+
git_shaf70bade1
slsa_provenancehttps://fonteum.com/.well-known/provenance/leie-2026-q1.intoto.jsonl
methodology_versiondistress-proxy/v1
Corrections+
  • 2026-06-01Corrigendum. The original publication (2026-05-05) framed exclusions as "rising" and cited +11% year-over-year additions through April 2026. That figure is not reproducible from the committed snapshot (oig-leie/2026-05, cms-leie-2026-05-08.json, 83,001 records): the series shows additions down 2.4% Jan–Apr 2026 vs 2025, and down 18.7% across full-year 2024 (3,134) to 2025 (2,549). The headline, standfirst, and figure were reconciled to the reproducible series, and the deferred monthly figure now renders from it. No source records were altered — only the headline measurement and its framing. The structural finding (new exclusions cluster around already-distressed operators) is unchanged.

Related studies

  • ACCESS · APR 2026A March spike in Medicare enrollment deactivations thinned provider supply in shortage areasMedicare enrollment deactivations in PECOS ran 28% above the trailing-twelve-month average in March 2026 — and the spike was not uniform. Deactivations in HRSA-designated shortage areas grew 41% against trend, versus 19% elsewhere. The places least able to absorb a departure lost providers fastest.
  • FINANCIAL DISTRESS · JUN 2026Hospitals running out of cash: the days-cash signal, and why most of it is a reporting artifactFederal HCRIS cost reports let us compute days cash on hand for 5,459 hospitals, but facility-level figures are distorted by system-level cash pooling — so the raw '2,800 hospitals under 30 days' headline is mostly noise. The defensible signal is narrower: 690 hospitals that report thin cash and also run an operating loss.
  • CARE QUALITY · MAY 2026Why 14% of skilled nursing facilities had a quality drop in Q1Across 5,148 SNFs in Q1 2026, the composite quality score declined by an average of 0.06 points — but the decline was not evenly distributed. Facilities that changed ownership in the prior twelve months accounted for a disproportionate share of the slide.
  • CARE QUALITY · JUN 2026How fast do nursing homes fix what surveyors cite? 28.5 days for the harmful onesAcross 415,849 corrected CMS nursing home health deficiencies, the mean time from survey to documented correction is 32 days — but the harm-level citations, Severity G and above, close faster, in 28.5 days. The more severe the finding, the quicker the fix. Texas and Illinois correct in about two weeks; Washington, D.C. takes nine.
  • WORKFORCE · JUN 2026Zero-RN days: how often US nursing homes ran a day with no registered nurse on the floorIn the CMS Payroll-Based Journal's 2025 Q2 snapshot, 5.86% of nursing-home facility-days with residents present recorded zero registered-nurse direct-care hours — 77,542 days across 5,062 facilities. The rate ranged from 27.9% in Louisiana to 0.2% in Rhode Island. Days before the federal staffing floor was rescinded, this is the baseline the country now keeps.

Federal source citations

  1. [1]OIG LEIE · snapshot 2026-05-01 · federal source family · US-Government-Works
  2. [2]CMS PECOS · snapshot 2026-05-01 · federal source family · US-Government-Works
Dataset catalog →Source registry →Methodology →Chain integrity →All research →Provider lookup →

Fonteum Research · May 5, 2026 · All figures trace to the frozen federal-data snapshot cited above.

Compliance posture

Methodology · Corrections log · Editorial policy

fonteum

Product

  • Data
  • API
  • Methodology
  • Sources
  • Freshness
  • Citations
  • Moat metrics

For buyers

  • AI agents
  • RAG developers
  • Compliance
  • Researchers
  • Developers

Reference

  • Compare
  • llms.txt
  • Agent card
  • Audit pack
  • Quality scorecard
  • Pilot intake
  • Research
  • Press & media

Sourced from federal agencies. Fonteum, Inc., Delaware C-corp. © 2026.

Request access→
1,322,946 nurse-staffing records · CMS PBJ