Skip to content
FonteumThe Graph

By use case

Exclusion & monitoring (self-serve)Free roster screen — no accountExclusion & sanctions screeningCredentialing & provider-data enrichmentAudit evidence & defensible programsProvider data for AI / RAGM&A & network diligence

By buyer

Compliance & riskJournalists & newsroomsDevelopers & AI teams

By industry

HealthcareProviders & facilitiesSanctionsOFAC / EU / UK / UN / OIG / SAMFederal contractingSAM · USASpending · FAPIIS

The capability layer

APIREST + bulk accessFor AI agentsModel Context Protocol serverFHIR R4 APIBulk exportAudit packSigned report artifacts; source facts remain separately citedReconciliationSource-vs-source diffsAI answers with sourcesHow records link upHistoryRetained versions for named sources

The differentiator

Coverage & sourcesThe catalogFreshnessMethodologyCare CompareFacility qualityAI answers, comparedBrowse all datasets →
Research

The dev on-ramp

DocsAPI referenceConnect your AI agent (MCP)One-paste installFHIR sandboxLive API surfaceQuickstartStatusChangelogSDKs & integrations
Pricing
Sign inFree roster screen →Get a signed certificate →

Solutions

Exclusion & monitoring (self-serve)Exclusion & sanctions screeningCredentialing & provider-data enrichmentAudit evidence & defensible programsProvider data for AI / RAGM&A & network diligenceCompliance & riskJournalists & newsroomsDevelopers & AI teamsHealthcareSanctionsFederal contracting

Platform

APIFor AI agentsFHIR R4 APIBulk exportAudit packReconciliationAI answers with sourcesHow records link upHistory

Data

Coverage & sourcesFreshnessMethodologyCare CompareAI answers, comparedBrowse all datasets →
Research

Developers

DocsAPI referenceConnect your AI agent (MCP)FHIR sandboxQuickstartStatusChangelogSDKs & integrations
Pricing
Sign inFree roster screen →Get a signed certificate →

For agent builders

Give your agent public records it can cite.

Wire source-linked records across healthcare, federal procurement, sanctions and watchlists, enforcement, and corporate and securities filings into your agent. Drop the hosted Fonteum MCP server into Claude Desktop, Cursor, or any LangGraph / OpenAI / Google ADK pipeline, and keep the returned source, capture date, and limitations with each fact.

Download mcp.json →
EARLY PILOT PARTNERS
Pilot partner placeholder 01Pilot partner placeholder 02Pilot partner placeholder 03Pilot partner placeholder 04

Quickstart

Pick a path. Every one runs against the live demo key.

curl, TypeScript, and Python run with the fnt_DEMO_PUBLIC_V1 sample key. For account-specific limits, set FONTEUM_API_KEY after you Request API access. The MCP config is labeled for use after package publication.

curl
curl https://api.fonteum.com/v1/npi/1234567893 \
  -H "Authorization: Bearer fnt_DEMO_PUBLIC_V1" \
  -H "Accept: application/json"

No signup. The read-only demo key fnt_DEMO_PUBLIC_V1 is limited to 20 requests/minute and 100 requests/day per trusted source IP.

quickstart.ts
// No SDK yet — raw fetch. SDK ships in Q3.
const r = await fetch("https://api.fonteum.com/v1/npi/1234567893", {
  headers: { "Authorization": "Bearer fnt_DEMO_PUBLIC_V1", "Accept": "application/json" },
});
const provider = await r.json();
console.log(provider.organization_name, provider._snapshot, provider._doi);

The demo response includes its available provenance fields. Read provider._snapshot for the recorded snapshot date and provider._doi when that dataset publishes a DOI.

quickstart.py
import requests
r = requests.get(
    "https://api.fonteum.com/v1/npi/1234567893",
    headers={"Authorization": "Bearer fnt_DEMO_PUBLIC_V1", "Accept": "application/json"},
)
provider = r.json()
print(provider["organization_name"], provider["_snapshot"], provider["_doi"])

Same flat shape across every language. The underscore-prefixed keys are the provenance contract.

mcp.json
{
  "_comment": "Future stdio config for @fonteum/mcp@0.4.0; do not run it until that version is published. The bundled read-only sample key runs the documented demo path; replace it with fnt_your_api_key after issuing an account key for production limits.",
  "mcpServers": {
    "fonteum": {
      "command": "npx",
      "args": [
        "-y",
        "@fonteum/mcp@0.4.0"
      ],
      "env": {
        "FONTEUM_API_KEY": "fnt_DEMO_PUBLIC_V1"
      }
    }
  }
}

Drop this into Claude Desktop, Cursor, Cline, or Continue. The @fonteum/mcp reads the issued key from FONTEUM_API_KEY — see the MCP server section below for the seven-tool contract.

What you get back

One flat record. A nullable fourteen-field provenance envelope.

The highlighted underscore-prefixed fields are the provenance contract: source, snapshot pin, methodology version, confidence, coverage window, persistent-identifier slot, and integrity-reference slot. Availability varies by source and response; no fact-to-signature relationship should be inferred from a separate snapshot attestation.

GET /v1/npi/1234567893
{
  "npi": "1234567893",
  "type": "organization",
  "organization_name": "EXAMPLE MEDICAL CENTER",
  "address": {
    "line1": "100 EXAMPLE ST",
    "city": "AUSTIN",
    "state": "TX",
    "postal_code": "78701"
  },
  "is_enrolled_medicare": true,
  "is_excluded_oig": null,
  "exclusion_coverage_status": "indeterminate",
  "exclusion_determination": "indeterminate",
  "exclusion_coverage_message": "Synthetic demo fixture — no live exclusion clearance is issued.",
  "quality_score_composite": 0.94,
  "open_payments_total_2024": 12450,
  "_source": "Synthetic demo fixture — not a live source record",
  "_source_url": null,
  "_dataset_id": "synthetic-demo-npi",
  "_snapshot": null,
  "_methodology": "synthetic-demo-v1",
  "_last_checked": null,
  "_confidence": null,
  "_data_availability": "synthetic_demo_fixture; exclusion_coverage_indeterminate",
  "_pipeline_version": null,
  "_doi": null,
  "_license": "Synthetic example; no source-record license asserted",
  "_coverage_period_start": null,
  "_coverage_period_end": null,
  "_slsa_provenance_url": null
}

Public-record source areas

One product, multiple public-record domains.

Fonteum maintains an active production source registry, whose status does not establish loaded, complete, fresh, or displayable coverage. The generated catalog is a separate list of catalog entries; every published fact identifies its source and capture date.

Healthcare

Provider, facility, quality, ownership, and program-integrity records from public healthcare sources.

Federal procurement

Entity registration, award, exclusion, and ownership records for federal contractors.

Sanctions and watchlists

Dated records from U.S., EU, UK, and UN public sanctions and watchlist sources.

Enforcement and integrity

Public enforcement, exclusion, and program-integrity records with source and capture-date context.

Corporate and securities

Public corporate-register and securities-filing records where Fonteum publishes a documented source surface.

Use the source catalog and each record’s metadata to understand coverage and limitations for the specific fact you need.

MCP server (Model Context Protocol)

The hosted v1.0.0 Streamable HTTP endpoint works today. The @fonteum/mcp@0.4.0 stdio source is ready in-repo for operator publication and will work with Claude Desktop, Cursor, Cline, Continue, and other MCP-compatible clients after it is published.

Hosted MCP v1.0.0 · @fonteum/mcp@0.4.0 not yet published · seven read-only tools

install
# Run only after @fonteum/mcp@0.4.0 is published to npm:
npm install -g @fonteum/mcp@0.4.0
mcp.json
{
  "_comment": "Future stdio config for @fonteum/mcp@0.4.0; do not run it until that version is published. The bundled read-only sample key runs the documented demo path; replace it with fnt_your_api_key after issuing an account key for production limits.",
  "mcpServers": {
    "fonteum": {
      "command": "npx",
      "args": [
        "-y",
        "@fonteum/mcp@0.4.0"
      ],
      "env": {
        "FONTEUM_API_KEY": "fnt_DEMO_PUBLIC_V1"
      }
    }
  }
}

Seven read-only tools

  • fonteum_resolve_entityResolve an NPI, UEI, or CAGE identifier to its canonical public-record entity.
  • fonteum_search_recordsSearch source-traced healthcare-provider records by name, specialty, or location.
  • fonteum_check_exclusions_and_sanctionsCheck one NPI against deployed US exclusion and debarment sources; name screening is unavailable.
  • fonteum_get_record_as_ofRead a federal-contractor record as it stood on a captured date.
  • fonteum_recheckRead the attestation-chain head or one immutable signed chain link.
  • fonteum_list_sourcesList the multi-vertical government-source catalog.
  • fonteum_dataset_infoRead methodology and provenance metadata for one deployed dataset slug.
  1. Open ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
  2. After @fonteum/mcp@0.4.0 is published, paste the mcp.json config above. Its read-only sample key runs the documented demo path; replace it with an account key for production limits.
  3. Restart Claude Desktop.
  4. Ask: Look up NPI 1234567893 with Fonteum.

Pilot access

Need production rate limits, custom datasets, or signed enterprise terms? Request pilot access → pilot@fonteum.com

READY TO SHIP

Add federal-data citations to your agent in 60 seconds.

Drop our MCP server into your agent or call the API with fnt_DEMO_PUBLIC_V1. The read-only sample is limited to 20 requests/minute and 100 requests/day per trusted source IP.

Add Fonteum to your agent →Request pilot access

What’s on file, by the numbers

Platform snapshot · 2026-07-15

13.4Mproviders & companiesProviders, organizations, owners, and facilities on file
26.2Msource-linked factsSource-linked field facts in the dated platform snapshot
35sources liveCrosswalk-resolved sources with a snapshot in the preceding 45 days
111sources integratedActive registry rows; integration does not establish a load
13state Medicaid jurisdictionsDistinct states represented in the state-exclusions serving table

Built on the authoritative federal record

The primary sources, named on every page.

These are the federal agencies whose public datasets Fonteum ingests and attributes — the issuing authorities, not customers or partners. Every figure on the site links back to one of them.

  • CMS
  • HHS-OIG
  • HRSA
  • FDA
  • NLM
  • NUCC
  • Census
  • BLS
  • BEA

See the full source registry, with license and refresh cadence for each →

Reproducible by design

Published figures name their source and date.

Source and date

Published research identifies its government file and observation date. Source-file SHA-256 coverage is disclosed separately; facts do not currently link deterministically to signatures.

Reproducible SQL

Each study ships the exact query behind its figures, run against the same dated copy of the federal file we used. Re-run it yourself.

Daily observations

The platform records table row counts daily. Those observations detect local drift; they do not imply that an upstream publisher released or Fonteum ingested new data that day.

Named medical review

Reviewed by Jennifer Montecillo, MD, medical reviewer. Non-practicing medical reviewer.

Read the full provenance and attestation methodology →

Fonteum
Platform
Platform overviewAPIFor AI agents (MCP)FHIR R4 APIBulk exportAudit packReconciliationAI answers with sourcesHow records link upHistory
Solutions
All solutionsExclusion & sanctions screeningCredentialing & enrichmentAudit evidenceProvider data for AI / RAGUse casesM&A & network diligenceCompliance & riskJournalists & newsroomsDevelopers & AI teams
Data & sources
Coverage & sourcesBrowse all datasetsState Medicaid exclusionsFreshnessMethodologyCare CompareNursing homesRecall recordsSanctions screeningOIG LEIE listOwnershipStaffingDeficienciesSpecial Focus Facilities
Federal contracting
OverviewAwards during active exclusionFederal debarment scorecardProcurement questionsContractor lookup8(a) certification guide
Developers
Developer hubDocsAPI referenceQuickstartStatusChangelogSDKs & integrationsWebhooks
Research & guides
Research hubLearnHow it worksGuidesHealthcare provider dataExclusion & sanctions screeningProvider credentialing dataHealthcare data for AIHospital margin gapProvider access gapsGlossaryComparisonsSourced data vs plain LLM answersCitationsManifestoWhy Fonteum
Company
AboutPressCustomersPricingContactEditorial policyCorrections
Trust & legal
TrustTrust markQualitySecurityPrivacy policyTerms of serviceAPI termsMedical disclaimer

Reviewed by Jennifer Montecillo, MD, medical reviewer. Non-practicing medical reviewer.

© 2026 Fonteum LLC. All rights reserved.

·hello@fonteum.com

A public-records graph that exposes source and observation metadata where supplied.

Fonteum's provenance ledger contained 26.2M source-linked facts on July 12, 2026. All but 14 carried a source-file SHA-256; 0 linked deterministically to a signature. Inspect a supplied snapshot id at fonteum.com/verify · source-mark coverage and limitations.
Request access→