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
x-api-keystringRequired
API authentication token (required for production). These will be generated as needed and shared with you to use. Use of our Mock CRM page does not require this header.
Body
zip_codestringRequiredExample:
Zip code of the household
12345fip_codestringRequiredExample:
FIPS code for the location
01001household_incomenumber · floatRequiredExample:
Annual household income in USD
50000plan_yearintegerOptionalExample:
Year of the plan (optional)
2023Responses
200
Successful APTC estimate
application/json
401
Unauthorized - missing or invalid API token
application/json
422
Bad request - missing or invalid parameters
application/json
post
/api/v1/aptc_estimatesPOST /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
