Skip to main content

Read a FHIR Resource

curl https://api.clinikapi.com/v1/fhir/Patient/pt_abc123 \
  -H "x-api-key: clk_live_abc123"
Returns the raw FHIR R4 resource:
{
  "resourceType": "Patient",
  "id": "pt_abc123",
  "meta": {
    "tag": [{ "system": "https://clinikapi.com/tenant", "code": "org_def456" }]
  },
  "name": [{ "family": "Doe", "given": ["Jane"] }],
  "gender": "female",
  "birthDate": "1990-03-15"
}