Patients

FHIR Patient

FHIR R4 Patient resources. All patient data is encrypted at rest and in transit per HIPAA requirements.

The Patient Object

FieldTypeDescription
idstringFHIR logical ID for the Patient resource (e.g. pat_demo_001)
resourceTypestringAlways "Patient" per FHIR R4 spec
nameHumanName[]Array of FHIR HumanName objects with family and given fields
genderstringAdministrative gender: male | female | other | unknown
birthDatedateDate of birth in YYYY-MM-DD format
identifierIdentifier[]Business identifiers: MRN, SSN, insurance member ID, etc.
telecomContactPoint[]Phone numbers, email addresses, and other contact details
addressAddress[]Physical and mailing addresses
metaobjectFHIR resource metadata including versionId and lastUpdated timestamp

Endpoints

Returns FHIR Patient resources using FHIR search semantics.

Parameters

ParameterInTypeRequiredDescription
familye.g. SmithquerystringoptionalFamily name search
birthdatee.g. ge1970-01-01querystringoptionalBirthdate (YYYY-MM-DD or range)
_counte.g. 20queryintegeroptionalPage size

Request

curl "https://api.healthcloud.ai/v1/patients?family=Johnson&_count=20" \
  -H "Authorization: Bearer hc_test_sk_demo_live_xxxxxx"

Response

Response200
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 1204,
  "entry": [
    {
      "resource": {
        "resourceType": "Patient",
        "id": "pat_demo_001",
        "name": [{ "family": "Johnson", "given": ["Maria"] }],
        "gender": "female",
        "birthDate": "1978-04-12",
        "identifier": [{ "system": "http://hospital.org/mrn", "value": "MRN00432" }]
      }
    }
  ]
}

Related Resources