For AI agents: the documentation index is at /docs/payerbox/llms.txt. A Markdown version of this page is available at /docs/payerbox/interop-apis/patient-access.md or by requesting it with the Accept: text/markdown header.
Payerbox Docs

Patient Access API

Patient Access flow: a member with a third-party app calls Payerbox — SMART launch and FHIR R4 read against the FHIR platform, and app discovery and launch through the Member portal. Health plan data sources (claims, clinical, eligibility, prior authorization) feed Payerbox.

The Patient Access API lets a member authorize a third-party app to read their own claims, clinical, encounter, formulary, and prior-authorization data over FHIR R4. Established by CMS-9115-F, in production since January 1, 2021; CMS-0057-F adds prior-authorization data effective January 1, 2027.

What Payerbox covers

Caller and auth

PropertyValue
CallerThird-party app the member authorizes (mobile, web, desktop)
AuthenticationSMART App Launch — OAuth 2.0 authorization code, PKCE for public clients, OpenID Connect for identity
Discovery<base>/.well-known/smart-configuration
Authorization endpoint<base>/auth/authorize
Token endpoint<base>/auth/token
CapabilityStatement<base>/fhir/metadata

Patient scoping

The access token's patient claim names which member the app may read. Payerbox scopes every query to that patient automatically — an app cannot read another member's data by passing a different patient ID.

Launch flows, PKCE, scope syntax, refresh tokens, and token-response shape live in API Reference / Authentication.

Data scope

What a member can read through the API:

Data classFHIR resourcesIG
USCDI clinicalPatient, Condition, Observation, MedicationRequest, AllergyIntolerance, Procedure, Immunization, DocumentReference, ...US Core
Adjudicated claims with remittances and enrollee cost-sharingExplanationOfBenefit, CoverageCARIN IG for Blue Button
Encounters with capitated providersEncounterUS Core
Lab resultsObservation (category=laboratory)US Core
Drug formulary (MA-PD only)InsurancePlan, Basic (formulary item), MedicationKnowledgePDex US Drug Formulary
Prior authorization request and decision (effective January 1, 2027, drug PA excluded)ExplanationOfBenefit (use=preauthorization)PDex

Service date floor: January 1, 2016.

Read examples

Mapped to common member-app needs. Every request carries the member's Authorization: Bearer <access-token> header; Payerbox scopes results to the patient in the token's patient claim.

Member demographics

GET <base>/fhir/Patient/<id>

Lab results

Observation profiled as US Core Laboratory Result; filter by category=laboratory.

GET <base>/fhir/Observation?patient=<id>&category=laboratory

Adjudicated claims

ExplanationOfBenefit is CARIN BB's focal resource for paid claims (institutional, professional, pharmacy, oral).

GET <base>/fhir/ExplanationOfBenefit?patient=<id>

Active coverage

GET <base>/fhir/Coverage?patient=<id>&status=active

Drug formulary (MA-PD)

Browse covered drugs in the member's plan formulary:

GET <base>/fhir/MedicationKnowledge?_profile=http://hl7.org/fhir/us/davinci-drug-formulary/StructureDefinition/usdf-FormularyDrug

Prior authorization (from January 1, 2027)

Adjudicated PA decisions surface as ExplanationOfBenefit with use=preauthorization:

GET <base>/fhir/ExplanationOfBenefit?patient=<id>&_profile=http://hl7.org/fhir/us/davinci-pdex/StructureDefinition/pdex-priorauthorization

Limitations

  • Opt-in per app. The member authorizes each third-party app separately. There is no payer-wide consent equivalent to Provider Access's opt-out model.
  • Prior authorization data lands January 1, 2027. Before that date, prior-authorization data need not be exposed through Patient Access.
  • No $export on member-scoped tokens. Bulk export is a system-level operation used by the payer; member apps use synchronous REST.
  • Single patient per token. A guardian or personal representative needs separate tokens per dependent member.

Last updated: