Flexpa
Developer PortalFeedbackContact usOnboard

Guides

  • Home
  • Quickstart
  • Financial Data

Network

  • Network guide
  • Directory
  • Updates

Consent

  • Link SDK
  • Patient access

Records

  • FHIR API
  • Node SDK
  • FHIR Introduction
  • Usage
  • Terminology
    • AllergyIntolerance
    • Bundle
    • CarePlan
    • CareTeam
    • Condition
    • Coverage
    • Device
    • DiagnosticReport
    • DocumentReference
    • Encounter
    • ExplanationOfBenefit
    • Goal
    • Immunization
    • Location
    • Medication
    • MedicationDispense
    • MedicationRequest
    • Observation
    • OperationOutcome
    • Organization
    • Patient
    • Practitioner
    • PractitionerRole
    • Procedure
    • Provenance

Misc

  • Changelog
  • Support
  • Flexpa OS
  • We're hiring

Patient

GET https://api.flexpa.com/fhir/Patient

  • Patient is a base FHIR Resource ( JSON example)
  • Commonly available via
    • US Core Patient Profile
    • C4BB Patient Profile

Patient is an adminstrative FHIR resource that contains demographic information about a patient, such as name(s), address(es), and birth date.

As a core administrative resource, all payers make this available and is one of the most fundamental building blocks Flexpa provides access to today.

#Sample request

While some servers may support a resource-level search without any parameters, not all do. We recommend using the read operation below with the patient ID as part of the path via the $PATIENT_ID wildcard.

This is a sample request using curl:

ACCESS_TOKEN=flexpa-link-access-token

curl "https://api.flexpa.com/fhir/Patient/$PATIENT_ID" \
  -H "Authorization: Bearer $ACCESS_TOKEN"

See the Patient $everything operation to pull all resources that reference a Patient in one API request.

#Sample response

This is a sample response from Humana using Flexpa API in test mode

Status TwitterGitHub

© 2025 Flexpa. All rights reserved.

On this page
  • Sample request
  • Sample response