Get your API key
Sign up at dashboard.clinikapi.com and create an organization. You receive two API keys immediately:
Test keys are available on all plans including Sandbox. Use them for development and CI/CD — data is isolated from production and you cannot accidentally write to live records.
| Key prefix | Environment | Datastore |
|---|---|---|
clk_test_* | Sandbox | Shared test HealthLake |
clk_live_* | Production | Shared prod (Free/Pro) or dedicated (Enterprise) |
Create a patient
Instantiate the client with your secret key and create your first patient record. ClinikAPI handles the FHIR R4 transformation and stores the resource in AWS HealthLake.Every SDK method returns an
ApiResponse<T> with two top-level fields:Read back with related resources
Use the The
include option to fetch a patient alongside related FHIR resources in a single request:include array accepts any of the 14 FHIR resource type names. ClinikAPI executes the related lookups server-side and returns all data in one response.Next steps
- Authentication — how API keys and tenant isolation work
- Patients guide — deep dive into patient operations
- Webhooks — get notified on resource changes
- Error handling — handle errors and retries gracefully