Insights

FHIR vs. Proprietary API: Why the Second EHR Integration Is Cheap and the First Proprietary One Isn't

Author
Bartosz Michalak
Published
August 11, 2026
Last update
August 13, 2026

Table of Contents

EXCLUSIVE LAUNCH
AI Implementation in Healthcare Masterclass
Start the course
Device mockup, tablet

Key Takeaways

  1. The first FHIR R4 integration is the expensive one: building the SMART on FHIR OAuth flow, resource handling, and mapping into your own data model.
  2. The second FHIR vendor reuses most of that work. Connecting a third or fourth adds approval time, not engineering time.
  3. Proprietary and niche systems don't compound. Each one is a separate project, with its own auth model and almost no carryover from the last.
  4. USCDI gives every certified EHR a predictable data floor, but two FHIR-compliant vendors can still return the same clinical concept in different shapes.
  5. Vendor categories shift. Systems once written off as proprietary now ship FHIR support, so the right move is to check each vendor rather than assume based on its category.
  6. The practical strategy is FHIR-first, with proprietary connections budgeted as separate line items.

Is Your HealthTech Product Built for Success in Digital Health?

Download the Playbook
Playbook ebook illustration

Every EHR integration estimate runs into the same question early: how much of this scales, and how much is a one-off. The answer depends almost entirely on one fork in the decision tree covered in our guide to EHR integration: does the vendor speak FHIR, or does it expose a proprietary API.

That single distinction is the biggest cost multiplier in any direct integration. Two vendors that are both FHIR R4 compliant let you reuse most of what you built for the first one. Two proprietary vendors don't, even if they sit in the same clinical category. Teams that estimate EHR work as a flat per-vendor cost, without separating these two paths, tend to overshoot on FHIR and undershoot on proprietary systems in the same breath.

This piece walks through why FHIR compounds and proprietary APIs don't, what a predictable data floor actually looks like once you're connected, and where the real estimating risk sits even inside a fully FHIR-compliant integration.

Why the first FHIR integration is the investment

A direct FHIR integration means registering an app in a vendor's developer program, requesting sandbox credentials, and implementing SMART on FHIR, the OAuth 2.0 layer that sits on top of FHIR. A patient-facing app does a standalone patient launch: the patient logs in at their institution, consents to scopes, and the app receives a token. A provider-facing app typically uses a backend service, system-to-system, with client credentials instead of a patient in the loop.

None of that is trivial the first time. You're building the auth flow itself, the FHIR resource pull with pagination and token refresh, error handling for a vendor's specific quirks, and the mapping from FHIR resources into your own data model. That work has to happen once, in full, before any data moves.

Why the second FHIR vendor is a fraction of the first

Here's what changes on vendor number two. The OAuth dance is largely the same. The resource shapes are mostly the same, because USCDI, US Core Data for Interoperability, sets a baseline that certified EHRs have to expose under the Cures Act. The pipeline you built for parsing, mapping, and storing FHIR resources carries over almost entirely.

What's left is the vendor's own approval process, which runs on its own timeline regardless of how clean your code is. Connecting a second FHIR EHR doesn't double your integration timeline. It adds a fraction of the original engineering effort, plus whatever that vendor's developer program takes to clear. A third and fourth vendor follow the same pattern. This is the mechanism behind realistic EHR integration timelines: engineering effort flattens quickly across FHIR vendors, while approval time does not.

Why proprietary systems don't compound

Not every EHR speaks FHIR, and the systems that don't are usually the ones where FHIR carryover would matter most: behavioral health platforms, wound care systems, and older hospital and long-term care systems that predate the current interoperability push.

Each proprietary vendor has its own authentication scheme, its own data model, and its own set of quirks, with almost no reuse from the last one you built. Budget each proprietary connection as its own project, not as a variation on your FHIR work. This is the single most common estimating mistake we see in multi-EHR integration planning: treating a proprietary vendor as "one more EHR" when it's closer to starting over.

The category itself is also less stable than it looks. Long-term and post-acute care vendors like PointClickCare and MatrixCare were, until recently, treated as proprietary by default. Both now expose FHIR alongside proprietary APIs, and PointClickCare runs a self-service developer program. Assuming a vendor is proprietary because its category historically was is exactly the kind of shortcut that produces a bad estimate. Check each vendor directly before scoping the work.

What a FHIR-compliant vendor actually gives you

USCDI, and the US Core FHIR profiles built on top of it, define the floor of data a certified EHR has to expose: demographics, problems, medications, allergies, labs, and clinical notes among them. That floor is genuinely useful. It means you're not negotiating, vendor by vendor, over whether basic clinical data is available at all.

What USCDI doesn't guarantee is that two vendors hand you the same concept in the same shape. Two FHIR R4-compliant EHRs can both expose a patient's medication list and still differ in which extensions they use, which code systems they reference, and how complete the data actually is in practice. Reconciling those differences against your own data model is where a clean per-vendor estimate turns into a real one. Skipping that reconciliation step is a common source of late-stage surprises in FHIR and HL7 interoperability projects that looked simple on paper.

Clinical notes are the part that resists standardization

Structured fields, the ones covered by USCDI, are the predictable part of an integration. Clinical notes are not. They typically arrive through the DocumentReference and Binary FHIR resources, inline as base64-encoded PDF, text, or HTML, within the scope of whatever the patient or provider consented to.

What you won't get automatically: a guarantee that every note the patient sees in their own portal is exposed over the API, or documents referenced by external URLs that sit outside the record you pulled. Completeness varies meaningfully by source. If a use case depends on notes specifically, and especially if it needs de-identified notes for a downstream use, that's a distinct workstream to scope early rather than discover mid-build.

The practical strategy: FHIR-first, proprietary as a separate line item

Given how differently these two paths scale, the estimating approach that holds up in practice is FHIR-first. Standardize on FHIR wherever a vendor supports it, treat every proprietary connection as its own scoped project, and plan explicitly for the data-reconciliation work between FHIR vendors rather than assuming it away.

This is also why direct integration isn't the only path worth considering. For patient-facing products that need broad coverage across many systems quickly, a patient-mediated gateway can absorb the per-vendor connection work entirely, at the cost of depending on what that gateway's catalog already covers. For provider-facing products with deep, ongoing bidirectional workflows, an integration engine solves a different problem than either direct FHIR or a gateway. Caily connected patients to their own records across seven major EHR systems in roughly two months, a timeline that reflects exactly this kind of path decision made early rather than worked around later.

Momentum's EHR integration work has supported healthcare integrations serving 1M+ patients, spanning FHIR, HL7, CDA, and direct vendor APIs. If you're scoping a new integration and aren't yet sure which vendors on your list are FHIR-compliant and which aren't, that's the first question worth answering before any estimate gets written down.

Frequently Asked Questions

Does adding a second FHIR-compliant EHR really cost less than the first?
Yes, in most cases. The OAuth flow, resource-handling pipeline, and data mapping you built for the first FHIR vendor carry over almost entirely. What's left is that vendor's own approval process, which is gated by their timeline rather than your engineering effort.
Why can't proprietary EHR integrations reuse work the same way?
Proprietary systems each define their own authentication model and data structure, with no shared standard behind them. There's little to no code or mapping logic to carry over from one proprietary vendor to the next, so each one is closer to a new project than an extension of the last.
Is FHIR the same thing as HL7?
No. HL7 v2 and CDA are older messaging and document standards still running many legacy hospital systems, while FHIR R4 is the modern REST-based standard most current EHR vendors are moving toward. A FHIR vs HL7 comparison usually comes down to timing: FHIR is what new integrations should target, HL7 is what you bridge when a system predates it.
Is a vendor's category (proprietary vs. FHIR) fixed over time?
No. Vendors that were once proprietary-only, particularly in long-term and post-acute care, are increasingly adding FHIR support alongside their existing APIs. Check each target vendor's current developer documentation rather than relying on how it was categorized in the past.
What does USCDI actually guarantee?
USCDI defines a baseline set of data, demographics, problems, medications, allergies, labs, and more, that certified EHRs must expose under the Cures Act. It guarantees that data exists and is reachable, not that every vendor represents it identically.
How long does a typical EHR integration take?
It depends heavily on which path you're on. A patient-mediated gateway can reach broad coverage in weeks. A first direct FHIR integration typically takes weeks of build time plus that vendor's approval process. Each additional FHIR vendor after that adds a fraction of the original effort.
Do clinical notes come through automatically with a FHIR integration?
Not completely. Notes surface through the DocumentReference and Binary resources, but completeness varies by source, and documents referenced by external URLs outside the record aren't retrieved automatically. If notes are central to your use case, scope that separately rather than assuming full coverage.
What's the difference between a direct FHIR integration and using a gateway like Fasten Health?
A direct FHIR integration means building and maintaining your own connection to each vendor. A patient-mediated gateway covers a large catalog of health systems through one API, absorbing the per-vendor work at the cost of being limited to what that gateway's catalog exposes.
Does Momentum only work with FHIR-compliant vendors?
No. Momentum's EHR integration work spans FHIR, HL7, CDA, and proprietary vendor APIs, supporting healthcare integrations serving 1M+ patients across both standardized and proprietary systems.

Written by Bartosz Michalak

Director of Engineering
He drives healthcare open-source development at the company, translating strategic vision into practical solutions. With hands-on experience in EHR integrations, FHIR standards, and wearable data ecosystems, he builds bridges between healthcare systems and emerging technologies.

See related articles

Green background with decorative circles

Not sure which of your target EHRs are FHIR-ready?

Let's Create the Future of Health Together

Our team can map your target vendor list against FHIR and proprietary paths before you commit to an estimate.

Looking for a partner who not only understands your challenges but anticipates your future needs? Get in touch, and let’s build something extraordinary in the world of digital health.

Newsletter

Bartosz Michalak