Request Structure

HTTP Requests

Use these headers when performing HTTP requests for GET operations.

curl --request GET \
     --url 'https://au-api.halaxy.com/main/Coverage' \
     --header 'Accept: application/fhir+json' \
     --header 'Content-Type: application/json' \
     --header 'Authorization: ••••••'

Use these headers when performing HTTP requests for POST operations

curl --request POST \
     --url 'https://au-api.halaxy.com/main/Coverage' \
     --header 'Accept: application/fhir+json' \
     --header 'Content-Type: application/json' \
     --header 'Authorization: ••••••'
     --data

Base URLs

UK & EU countries must use the base URL: https://eu-api.halaxy.com/main/

All other countries must use the base URL: https://au-api.halaxy.com/main/

Security

Add the authorization header to include your API token.

Content Types

Halaxy API only supports application/fhir+json.