Free tier · 10,000 requests/day · no credit card

The healthcare data API
that shows its work.

30+ federal, state, academic, and commercial sources unified behind one REST endpoint. Every claim traces back to a primary source. Every dataset's license and refresh history is public.

curl · 2 minutes from signup to first call
$ curl -H "X-API-Key: $KEY" \ "https://api.healthcaredata.io/hospitals?state=CA&limit=5" # Returns 5 California hospitals with star ratings, HCAHPS scores, # financial data, system affiliation, and geocoordinates. # Every field traces back to a primary federal source via /sources.

Why developers choose Verzi

We built the API your team was about to build internally over six weeks of CSV parsing and quarterly schema drift.

One API, 30+ sources joined

CMS quality, NPPES, Open Payments, Part D, license data, IRS 990, DOL 5500, SEC EDGAR, CDC PLACES — all cross-linked by NPI, CCN, or geography.

vs. building 30 loaders + a schema

$49–$199/mo, no enterprise contract

Self-serve signup, transparent pricing, free forever tier. The legacy enterprise platforms quote six figures for less data and worse coverage.

vs. $50K+ starting price

Provenance you can audit

Every claim cites its source. /sources lists every dataset with license and refresh history. /accuracy publishes our variance vs. system-stated ground truth.

vs. methodology black boxes

Fresh data, automated

Weekly CMS releases, monthly OIG / HPSA / NPPES updates, quarterly financial filings — all ingested via automated pipelines. Live refresh status at /platform/stats.

vs. quarterly stale snapshots

Built for integration

Stable REST endpoints, JSON responses, rate limits exposed via headers, OpenAPI spec at /docs. Ship in an afternoon.

vs. enterprise sales cycles

Not PHI, no BAA required

All data is provider-, facility-, or population-level. Public-domain federal sources. Full disclosure statement here.

vs. HIPAA evaluation overhead

Integrate in any language

Standard REST + API key. Use any HTTP client you already have.

Pythonrequests
import requests KEY = "sk_live_xxx" resp = requests.get( "https://api.healthcaredata.io/npi/1234567890", headers={"X-API-Key": KEY}, ) provider = resp.json() print(provider["name"], provider["specialty"])
JavaScriptfetch
const KEY = "sk_live_xxx"; const resp = await fetch( "https://api.healthcaredata.io/hospitals?state=CA", { headers: { "X-API-Key": KEY } } ); const hospitals = await resp.json(); console.log(hospitals.length);
cURLshell
# OIG exclusion screening curl -H "X-API-Key: $KEY" \ "https://api.healthcaredata.io/exclusions/check/1234567890" # Hospital quality + financials curl -H "X-API-Key: $KEY" \ "https://api.healthcaredata.io/hospitals/450000"

Free to start. $199/mo at scale.

Four tiers: Free ($0, 10K requests/day) · Starter ($49/mo, 50K) · Pro ($199/mo, 500K) · Enterprise (custom).
No credit card for the free tier. No surprise overage charges on any tier.

See full pricing →   Dashboard pricing →

Trust by transparency

Most healthcare data platforms keep their methodology proprietary. We publish ours.

Live status

/platform/stats

Row counts, source counts, last pipeline run, last refresh status. Updated in real time.

View live →
Catalog

/sources

Every dataset we ingest, with source agency, license, refresh cadence, and last-loaded timestamp.

View catalog →
Refresh history

/sources/{id}/history

Per-source audit log. Every load attempt, success or failure, timing, row counts, error message.

View example →
Accuracy benchmark

/accuracy

System-by-system variance vs. publicly-stated ground truth. Nightly refresh.

View benchmark →
Data disclosure

/legal/data-disclosure

HIPAA classification, per-source licensing, redistribution restrictions, change log.

Read →
OpenAPI

/docs

Interactive Swagger UI with request builders for every endpoint. Try requests without a key.

Explore →

Ready to start building?

Free tier, no credit card, 2-minute integration.

Get your API key →