Authentication

Authentication Header

Include your API key in every request using the x-api-key header:

x-api-key: your_api_key_here

Example Request

POST /api/v1/aptc_estimates HTTP/1.1
Host: api.ichra-staging.healthsherpa.com
x-api-key: your_api_key_here
Content-Type: application/json
Accept: */*

Example cURL

curl -X POST https://api.ichra-staging.healthsherpa.com/api/v1/aptc_estimates \
  -H "x-api-key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "zip_code": "12345",
    "fip_code": "01001",
    "household_income": 50000,
    "plan_year": 2023,
    "applicants": [
      {
        "age": 35,
        "relationship": "primary",
        "smoker": false
      }
    ]
  }'

Key Management

  • API keys will be provisioned during onboarding.

  • If you need a new key or wish to rotate an existing one, contact your HealthSherpa account manager.

  • Do not expose your API key publicly or embed it in client-side code.

  • HealthSherpa may rotate or revoke keys for security reasons.

Last updated