APTC Estimator API
Environments:
Environment
URL
Staging
https://api.ichra-staging.healthsherpa.com
Production
https://api.ichra.healthsherpa.com
Fetch an APTC estimate based on household information
Authorizations
Body
zip_codestringRequiredExample:
Zip code of the household
12345
fip_codestringRequiredExample:
FIPS code for the location
01001
household_incomenumber · floatRequiredExample:
Annual household income in USD
50000
plan_yearintegerOptionalExample:
Year of the plan (optional)
2023
Responses
200
Successful APTC estimate
application/json
Responseobject
APTC estimate details
401
Unauthorized - missing or invalid API token
application/json
422
Bad request - missing or invalid parameters
application/json
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