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

Condition

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

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

Condition is a clinical FHIR Resource to record detailed information about a condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.

Accessing a patient's conditions can aid in workflows such as understanding a patient's active problems for which they are receiving care.

Condition data is available from multiple sources. Payers provide condition information based on diagnosis codes and clinical data they receive, while provider data sources via TEFCA or EHR systems typically offer more detailed and current condition information as it's recorded during clinical encounters.

#Search parameters

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

Parameters

patientstring

The ID of the patient who has the condition. We recommend using this search parameter along with the $PATIENT_ID wildcard

statusstring

The category of the condition.

clinical-statusstring

The clinical status of the condition.

#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/Condition?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