> ## Documentation Index
> Fetch the complete documentation index at: https://mso.getlemma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# What is a clearinghouse?

> The post office, translator, and inspector of healthcare claims: what clearinghouses actually do, why direct payer connections don't scale, and what the 2024 Change Healthcare outage revealed.

A **clearinghouse** is an intermediary that receives claims from providers, validates and translates them into the format each payer expects, routes them to the right payer, and returns acknowledgments and remittances. It is the post office, the translator, and the pre-flight inspector of healthcare billing.

## Why they exist

In principle, HIPAA standardized healthcare transactions: everyone uses X12 837 for claims, 835 for remittances, 270/271 for eligibility. In practice, "we support the standard" still yields payer-by-payer variation.

Each payer has its own **companion guide** specifying how it interprets optional fields, which situational elements it requires, what identifiers it expects, and how it wants files delivered. Each payer has its own connection method, its own submitter enrollment process, its own edits, and its own quirks.

A practice contracting with fifteen payers would otherwise need fifteen connections, fifteen enrollment processes, fifteen sets of format rules, and fifteen monitoring endpoints. A clearinghouse collapses that into one.

## What a clearinghouse actually does

| Function                     | What it means                                                                                             |
| ---------------------------- | --------------------------------------------------------------------------------------------------------- |
| **Translation**              | Convert your system's output into the exact format each payer requires                                    |
| **Validation and scrubbing** | Apply payer-specific edits before submission, so errors are caught for free instead of denied for 30 days |
| **Routing**                  | Send each claim to the right payer via the right connection, using **payer IDs**                          |
| **Acknowledgment handling**  | Receive and surface TA1, 999, and 277CA responses                                                         |
| **Remittance aggregation**   | Collect 835s from all payers into one stream                                                              |
| **Eligibility and status**   | Real-time 270/271 eligibility and 276/277 claim status                                                    |
| **Enrollment management**    | Handle the EDI, ERA, and EFT enrollment paperwork per payer, often the highest-value service they provide |
| **Reporting**                | Acceptance rates, rejection reasons, submission history                                                   |

<Tip>
  **Enrollment support is the most underrated criterion.** The claim-transmission function is close to commoditized. The part that costs a new group months is getting EDI, ERA, and EFT enrolled across every payer, and clearinghouses differ enormously in how well they handle it. Weight it heavily when choosing.
</Tip>

## Payer IDs

Each payer has an identifier the clearinghouse uses for routing. **Payer IDs are clearinghouse-specific** — the same payer can have different IDs at different clearinghouses, and separate IDs for professional versus institutional claims.

This is why switching clearinghouses requires remapping every payer in your system, and why a claim can reject as "payer not found" when the ID was fine at your previous vendor. Every clearinghouse publishes a payer list; treat it as the canonical source. See [Payer enrollment and submission links](/reference/payers/enrollment-links).

## Batch-era vs API-era

Two generations coexist:

**Batch/legacy.** Built on SFTP file drops and scheduled processing. You upload a batch of claims, wait, and download responses. Portal-first, with an API bolted on later if at all. This describes most incumbent clearinghouses.

**API-first.** Built around real-time REST/JSON endpoints, with X12 available for compatibility. Eligibility returns synchronously; claims and remittances are retrievable programmatically; everything the portal does is available to code. Newer entrants such as [Stedi](https://www.stedi.com/healthcare) are examples of this generation.<sup>1</sup>

The distinction matters if you intend to build anything — automated eligibility at scheduling, denial analytics, per-entity dashboards across a multi-PC group. With a batch-era vendor, that work means screen-scraping or manual export. With an API-first vendor, it is an integration.

See [Choose a clearinghouse](/guides/billing/choose-a-clearinghouse) and [The clearinghouses, compared](/reference/vendors/clearinghouse-comparison) for the criteria that matter and how the vendors stack up.

## Do you get to choose?

Often not. Many EHRs embed a clearinghouse and make it difficult or impossible to use another.

**Ask before you sign the EHR contract**, not after. Confirming that an EHR permits your choice of clearinghouse, and getting that in writing, is far easier than changing clearinghouses later, which means remapping every payer, re-enrolling EDI and ERA across your whole payer list, and running parallel for a period.

## The 2024 Change Healthcare outage

The most important recent event in this market, and a genuine lesson about concentration risk.

On February 21, 2024, **Change Healthcare**, a UnitedHealth Group subsidiary and one of the largest clearinghouses in the country, discovered it had been compromised by ransomware. Attackers had accessed its systems from February 17, reportedly through a Citrix remote access service that lacked multi-factor authentication. Change Healthcare took systems offline.<sup>2</sup>

The scale of dependency became visible immediately. Change Healthcare processed a very large share of US medical claims, serving hundreds of thousands of physicians, tens of thousands of pharmacies, and thousands of hospitals and labs. An American Hospital Association survey of nearly 1,000 hospitals in March 2024 found 74% reporting direct patient care impact, including delays in authorizations for medically necessary care.<sup>3</sup>

Practices could not submit claims, could not receive remittances, and in many cases could not verify eligibility. Cash flow stopped for weeks. UnitedHealth Group ultimately confirmed a \$22 million ransom payment, and the data of an estimated 100 million individuals was affected.<sup>4</sup>

**What it revealed:**

1. **Concentration risk is real and it is systemic.** A single vendor's outage stopped revenue for a meaningful fraction of American healthcare.
2. **Most practices had no contingency.** No secondary clearinghouse, no paper fallback, no cash reserve sized for a multi-week revenue interruption.
3. **Vertical integration compounds it.** The largest payer's corporate parent owned the pipe that many of its own claims traveled through.
4. **Basic security hygiene mattered.** A remote access service without MFA.

**What to do about it:**

* **Hold cash reserves** sized to survive several weeks with no collections. This is the single most effective mitigation.
* **Know your fallback** before you need it: which payers accept direct submission or portal entry, and whether a secondary clearinghouse could be stood up.
* **Ask vendors about incident history and security posture** during selection, and read their SOC 2 report.
* **Keep your data portable.** If your claim and remittance data is only inside a vendor's portal, you cannot move.

## Sources

1. Stedi, [Healthcare clearinghouse APIs](https://www.stedi.com/healthcare) and [Developer Docs](https://www.stedi.com/docs/healthcare) (checked August 2026).
2. HIPAA Journal, [Change Healthcare Responding to Cyberattack](https://www.hipaajournal.com/change-healthcare-responding-to-cyberattack/); Congressional Research Service, [The Change Healthcare Cyberattack](https://www.congress.gov/crs_external_products/IN/HTML/IN12330.web.html).
3. American Hospital Association, [Change Healthcare Cyberattack Underscores Urgent Need to Strengthen Cyber Preparedness](https://www.aha.org/change-healthcare-cyberattack-underscores-urgent-need-strengthen-cyber-preparedness-individual-health-care-organizations-and).
4. IBM, [Change Healthcare discloses USD 22M ransomware payment](https://www.ibm.com/think/news/change-healthcare-22-million-ransomware-payment).


## Related topics

- [Clearinghouse vs RCM vs EHR (vs biller)](/concepts/payments/clearinghouse-vs-rcm-vs-ehr.md)
- [EDI and X12, gently](/concepts/payments/edi-and-x12-basics.md)
- [The life of a claim](/concepts/payments/claim-lifecycle.md)
- [Choose a clearinghouse](/guides/billing/choose-a-clearinghouse.md)
- [Set up EDI, ERA, and EFT with each payer](/guides/enrollment/set-up-edi-era-eft.md)
- [The clearinghouses, compared](/reference/vendors/clearinghouse-comparison.md)
- [Clearinghouse directory](/reference/vendors/clearinghouse-directory.md)
