Flexpa
Developer PortalFeedbackContact usSandbox

Guides

  • Home
  • Quickstart
  • Claims data guide
  • Financial data guide
  • Parsing FHIR data

Network

  • Network Reference
  • Directory

Consent

  • Consent SDK
  • Usage patterns
  • Patient access

Records

  • FHIR API
  • Data Sheet
  • Node SDK
  • SMART Health Links API
  • Terminology

Misc

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

CarePlan

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

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

CarePlan is a clinical FHIR Resource that describes how one or more practitioners intend to deliver care for a particular patient, possibly limited to care for a specific condition or set of conditions.

Accessing a patient's care plans can aid in workflows such as working with the patient to determine their overall treatment.

CarePlan data may be available from payers if submitted by providers for quality measures or other data exchange programs. This resource is more commonly available through provider data sources via TEFCA or EHR systems, where care plans are created and maintained as part of clinical workflows.

#Search parameters

The full list of search parameters can be found here. Some of the most important are:

Parameters

patientstring

The identity of a patient that the care plans are about. We recommend using this search parameter along with the $PATIENT_ID wildcard

statusstring

The status of the care plan

categorystring

The category of the care plan

#Sample request

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

This is a sample request using curl

ACCESS_TOKEN=flexpa-link-access-token

curl "https://api.flexpa.com/fhir/CarePlan?patient=$PATIENT_ID" \
  -H "Authorization: Bearer $ACCESS_TOKEN"

#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
  • Search parameters
  • Sample request
  • Sample response