> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clinikapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Read (FHIR)

> Read a raw FHIR R4 resource by type and ID.

## Read a FHIR Resource

```bash theme={null}
curl https://api.clinikapi.com/v1/fhir/Patient/pt_abc123 \
  -H "x-api-key: clk_live_abc123"
```

Returns the raw FHIR R4 resource:

```json theme={null}
{
  "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"
}
```
