APTC Estimator API

Environments:

Environment
URL

Staging

https://api.ichra-staging.healthsherpa.com

Production

https://api.ichra.healthsherpa.com

Create APTC estimate

post

Fetch an APTC estimate based on household information

Authorizations
Body
zip_codestringRequired

Zip code of the household

Example: 12345
fip_codestringRequired

FIPS code for the location

Example: 01001
household_incomenumber · floatRequired

Annual household income in USD

Example: 50000
plan_yearintegerOptional

Year of the plan (optional)

Example: 2023
Responses
200

Successful APTC estimate

application/json
Responseobject

APTC estimate details

post
POST /api/v1/aptc_estimates HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 147

{
  "zip_code": "12345",
  "fip_code": "01001",
  "household_income": 50000,
  "plan_year": 2023,
  "applicants": [
    {
      "age": 35,
      "relationship": "primary",
      "smoker": false
    }
  ]
}
{}

Last updated