For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get access
Getting Started Key Concepts Integration Types Core Components Embed Hosted API API Reference
  • API Reference
      • GETRetrieve employer quote
      • GETList all employer quotes
      • GETRetrieve an employer policy
      • GETList all employer policies
      • GETRetrieve an employee offer
      • GETList all employee offers
      • GETList all employee policies
      • GETRetrieve an employee policy
    • Contribution Reports
    • Events and Webhooks
    • API Errors
Get access
LogoLogo
API ReferenceHealth Insurance

List all employer policies

GET
/employers/:employer_id/health_insurance/policies
GET
/employers/:employer_id/health_insurance/policies
$curl https://test.api.kota.io/employers/er_3b1333d87d9d4fd6ad83ba7f6b0e951a/health_insurance/policies \
> -H "Authorization: Bearer <apiKey>" \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "items": [
3 {
4 "id": "erhp_3b1333d87d9d4fd6ad83ba7f6b0e951a",
5 "employer_id": "er_3b1333d87d9d4fd6ad83ba7f6b0e951a",
6 "start_date": "2024-01-01",
7 "end_date": "2024-12-31",
8 "status": "active",
9 "enrolment_type": "opt_in",
10 "renewal": {
11 "status": "open",
12 "renewal_date": "2024-11-15",
13 "window_start_date": "2024-10-01",
14 "window_end_date": "2024-11-30",
15 "decision_confirmed": false
16 },
17 "employer_cancellation_period_length": 30,
18 "coverage_levels": [
19 {
20 "plan_id": "pl_7f8e9d6c5b4a3e2f1d0c9b8a7e6d5c4b",
21 "plan_name": "Comprehensive Health Plan",
22 "plan_currency": "usd",
23 "provider_name": "HealthFirst Insurance",
24 "provider_logo_url": "https://healthfirst.com/assets/logo.png",
25 "documents": [
26 {
27 "title": "Insurance Product Information Document",
28 "link": "https://healthfirst.com/docs/product-info-2024.pdf"
29 },
30 {
31 "title": "Hospital List",
32 "link": "https://healthfirst.com/docs/hospital-list-2024.pdf"
33 },
34 {
35 "title": "Table of Cover",
36 "link": "https://healthfirst.com/docs/table-of-cover-2024.pdf"
37 }
38 ],
39 "provider_employer_platform_url": "https://employer.healthfirst.com",
40 "provider_support_phone": "+1-800-555-1234"
41 }
42 ],
43 "object": "employer_health_insurance_policy",
44 "group_policy_number": "GP-2024-56789"
45 }
46 ],
47 "page": 1,
48 "page_size": 10,
49 "total_count": 25,
50 "has_next_page": true,
51 "has_previous_page": false
52}

Returns a list of group health insurance policies for an employer. The policies are returned sorted by creation date, with the most recent policy appearing first.

Previous

Retrieve an employer policy

Next

Retrieve an employee offer

Built with

Authentication

AuthorizationBearer
Authorization header using the Bearer scheme

Path parameters

employer_idstringRequiredformat: "er_.+"

Query parameters

statusstringOptional

Multiple values can be provided by separating them with a comma. Allowed values are: scheduled, active, expired, cancelled.

pageintegerOptional
The page of results to return. Defaults to 1 if not provided.
page_sizeintegerOptional
The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.

Response

OK
itemslist of objects
A paginated array containing the response elements
pageinteger
The current page of the results
page_sizeinteger
The number of results on this page. This can be different from the requested page size if the total number of results is less than the requested page size
total_countinteger
The total number of elements available in the response. This is the total number of elements available across all pages, not just the current page.
has_next_pagebooleanRead-only
Whether there are more pages available after this page
has_previous_pagebooleanRead-only
Whether there are more pages available before this page