Patient

The Patient API enables Humana members to securely exchange their personal details like name, address, phone number, and date of birth with third party applications. This API conforms to the R4 FHIR standard and the US Core STU3 Implementation Guide.


URL


Sample Request

curl -X GET \
https://fhir.humana.com/sandbox/api/Patient \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {your access token}' \
curl -X GET \
https://fhir.humana.com/api/Patient \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {your access token}' \

Sample Response

{
    "resourceType": "Bundle",
    "id": "a3492cb37b9c46c490b398ffafc80b64",
    "meta": {
      "lastUpdated": "2021-09-13T12:50:12.1417948+00:00"
    },
    "type": "searchset",
    "link": [
      {
        "relation": "self",
        "url": "https://fhir.humana.com/sandbox/api/Patient?_count=3&_id=5a357166754b59777137634248494434654c336d68773d3d"
      }
    ],
    "entry": [
      {
        "fullUrl": "https://fhir.humana.com/sandbox/api/Patient/5a357166754b59777137634248494434654c336d68773d3d",
        "resource": {
          "resourceType": "Patient",
          "id": "5a357166754b59777137634248494434654c336d68773d3d",
          "meta": {
            "versionId": "197",
            "lastUpdated": "2021-09-13T08:30:11.826+00:00",
            "source": "https://fhir.humana.com/documentation/glossary/HumanaDataSource",
            "tag": [
              {
                "system": "https://www.hl7.org/fhir/patient.html",
                "code": "Patient/5a357166754b59777137634248494434654c336d68773d3d"
              },
              {
                "system": "https://fhir.humana.com/documentation/glossary/lastRefreshedOn",
                "code": "2021-09-13T08:30:11.573Z"
              }
            ]
          },
          "identifier": [
            {
              "system": "https://fhir.humana.com/documentation/glossary/userinfo_id",
              "value": "user00001"
            }
          ],
          "name": [
            {
              "use": "usual",
              "family": "Renner",
              "given": [
                "Valentine"
              ],
              "text": "Valentine Renner"
            }
          ],
          "telecom": [
            {
              "system": "phone",
              "value": "5968501614"
            }
          ],
          "gender": "male",
          "birthDate": "2020-08-01",
          "address": [
            {
              "type": "physical",
              "line": [
                "0097 Coy Street"
              ],
              "city": "East Zacharyville",
              "district": "Borders",
              "state": "IA",
              "postalCode": "50402",
              "country": "US"
            }
          ]
        },
        "search": {
          "mode": "match"
        }
      }
    ]
  }