Temple Health · Example Payload

Temple Health Fhir R4 Observation Search Example

Academic Medical CenterCMS InteroperabilityCures ActDSTU2EpicFHIRFox Chase Cancer CenterHL7HealthcareHospital SystemMyChartOAuth 2.0Patient AccessPrice TransparencyR4SMART on FHIRTemple UniversityUS CoreUSCDI

Temple Health Fhir R4 Observation Search Example is an example object payload from Temple Health, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://epicaccess.templehealth.org/FhirProxyPrd/api/FHIR/R4/Observation?patient=eXq8H1A9KEX0lpDJxCQ-zJg3&category=vital-signs&_count=10&_format=json",
    "headers": {
      "Accept": "application/fhir+json",
      "Authorization": "Bearer eyJraWQiOiI...redacted..."
    }
  },
  "response": {
    "status": 200,
    "body": {
      "resourceType": "Bundle",
      "type": "searchset",
      "total": 1,
      "entry": [
        {
          "resource": {
            "resourceType": "Observation",
            "id": "obs-bp-001",
            "status": "final",
            "category": [
              {
                "coding": [
                  {
                    "system": "http://terminology.hl7.org/CodeSystem/observation-category",
                    "code": "vital-signs",
                    "display": "Vital Signs"
                  }
                ]
              }
            ],
            "code": {
              "coding": [
                {
                  "system": "http://loinc.org",
                  "code": "85354-9",
                  "display": "Blood pressure panel"
                }
              ]
            },
            "subject": { "reference": "Patient/eXq8H1A9KEX0lpDJxCQ-zJg3" },
            "effectiveDateTime": "2026-05-22T10:14:00-04:00",
            "component": [
              {
                "code": {
                  "coding": [
                    { "system": "http://loinc.org", "code": "8480-6", "display": "Systolic blood pressure" }
                  ]
                },
                "valueQuantity": { "value": 122, "unit": "mmHg", "system": "http://unitsofmeasure.org", "code": "mm[Hg]" }
              },
              {
                "code": {
                  "coding": [
                    { "system": "http://loinc.org", "code": "8462-4", "display": "Diastolic blood pressure" }
                  ]
                },
                "valueQuantity": { "value": 78, "unit": "mmHg", "system": "http://unitsofmeasure.org", "code": "mm[Hg]" }
              }
            ]
          }
        }
      ]
    }
  }
}