> ## 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.

# Create (FHIR)

> Create a raw FHIR R4 resource.

## Create a FHIR Resource

```bash theme={null}
curl -X POST https://api.clinikapi.com/v1/fhir/Patient \
  -H "x-api-key: clk_live_abc123" \
  -H "Content-Type: application/fhir+json" \
  -d '{
    "resourceType": "Patient",
    "name": [{ "family": "Smith", "given": ["John"] }],
    "gender": "male",
    "birthDate": "1985-06-20"
  }'
```

Your tenant tag is automatically injected into `meta.tag`. You do not need to include it.
