Kota Health Insurance API

The Health Insurance API from Kota — 8 operation(s) for health insurance.

Operations 8

GET /employers/{employer_id}/health_insurance/quotes/{employer_quote_id} Retrieve employer quote #
GET /employers/{employer_id}/health_insurance/quotes List all employer quotes #
GET /employers/{employer_id}/health_insurance/policies/{employer_policy_id} Retrieve an employer policy #
GET /employers/{employer_id}/health_insurance/policies List all employer policies #
GET /employees/{employee_id}/health_insurance/offers/{employee_offer_id} Retrieve an employee offer #
GET /employees/{employee_id}/health_insurance/offers List all employee offers #
GET /employees/{employee_id}/health_insurance/policies List all employee policies #
GET /employees/{employee_id}/health_insurance/policies/{employee_policy_id} Retrieve an employee policy #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kota-health-insurance-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kota-health-insurance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Kota Health Insurance API
  version: '1.0'
servers:
- url: https://test.api.kota.io
  description: Test Kota API
  x-fern-server-name: test
- url: https://api.kota.io
  description: Production Kota API
  x-fern-server-name: production
security:
- bearerAuth: []
tags:
- name: Health Insurance
paths:
  /employers/{employer_id}/health_insurance/quotes/{employer_quote_id}:
    get:
      tags:
      - Health Insurance
      summary: Retrieve employer quote
      description: Returns group's health insurance `quote` for an `employer` by `employer_quote_id`.
      operationId: RetrieveEmployerHealthInsuranceQuote
      parameters:
      - name: employer_id
        in: path
        required: true
        schema:
          pattern: er_.+
          type: string
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: employer_quote_id
        in: path
        required: true
        schema:
          pattern: erhq_.+
          type: string
          example: erhq_3b1333d87d9d4fd6ad83ba7f6b0e951a
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployerHealthInsuranceQuoteResponse'
        '404':
          description: Not Found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /employers/{employer_id}/health_insurance/quotes:
    get:
      tags:
      - Health Insurance
      summary: List all employer quotes
      description: Returns a list of health insurance `quotes` for an `employer`. The `quotes` are returned sorted by creation date, with the most recent `quote` appearing first.
      operationId: ListEmployerHealthInsuranceQuotes
      parameters:
      - name: employer_id
        in: path
        required: true
        schema:
          pattern: er_.+
          type: string
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: status
        in: query
        description: 'Multiple values can be provided by separating them with a comma. Allowed values are: `pending_quote`, `action_required`, `not_undertaken`, `accepted`, `pending_insurer_acceptance`.'
        schema:
          type: string
      - name: page
        in: query
        description: The page of results to return. Defaults to 1 if not provided.
        schema:
          type: integer
          description: The page of results to return. Defaults to 1 if not provided.
          format: int32
      - name: page_size
        in: query
        description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
        schema:
          type: integer
          description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployerHealthInsuranceQuoteResponsePagedList'
  /employers/{employer_id}/health_insurance/policies/{employer_policy_id}:
    get:
      tags:
      - Health Insurance
      summary: Retrieve an employer policy
      description: Retrieve group's health insurance `policy` for an `employer` by `employer_policy_id`.
      operationId: RetrieveEmployerHealthInsurancePolicy
      parameters:
      - name: employer_id
        in: path
        required: true
        schema:
          pattern: er_.+
          type: string
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: employer_policy_id
        in: path
        required: true
        schema:
          pattern: erhp_.+
          type: string
          example: erhp_3b1333d87d9d4fd6ad83ba7f6b0e951a
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployerHealthInsurancePolicyResponse'
        '404':
          description: Not Found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /employers/{employer_id}/health_insurance/policies:
    get:
      tags:
      - Health Insurance
      summary: List all employer policies
      description: 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.
      operationId: ListEmployerHealthInsurancePolicies
      parameters:
      - name: employer_id
        in: path
        required: true
        schema:
          pattern: er_.+
          type: string
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: status
        in: query
        description: 'Multiple values can be provided by separating them with a comma. Allowed values are: `scheduled`, `active`, `expired`, `cancelled`.'
        schema:
          type: string
      - name: page
        in: query
        description: The page of results to return. Defaults to 1 if not provided.
        schema:
          type: integer
          description: The page of results to return. Defaults to 1 if not provided.
          format: int32
      - name: page_size
        in: query
        description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
        schema:
          type: integer
          description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployerHealthInsurancePolicyResponsePagedList'
  /employees/{employee_id}/health_insurance/offers/{employee_offer_id}:
    get:
      tags:
      - Health Insurance
      summary: Retrieve an employee offer
      description: Retrieve group's health insurance `offer` for an `employee` by `employee_offer_id`.
      operationId: RetrieveEmployeeHealthInsuranceOffer
      parameters:
      - name: employee_id
        in: path
        required: true
        schema:
          pattern: ee_.+
          type: string
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: employee_offer_id
        in: path
        required: true
        schema:
          pattern: eeho_.+
          type: string
          example: eeho_3b1333d87d9d4fd6ad83ba7f6b0e951a
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeHealthInsuranceOfferResponse'
        '404':
          description: Not Found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /employees/{employee_id}/health_insurance/offers:
    get:
      tags:
      - Health Insurance
      summary: List all employee offers
      description: Returns a list of group health insurance `offers` for an `employee`. The `offers` are returned sorted by creation date, with the most recent `offer` appearing first.
      operationId: ListEmployeeHealthInsuranceOffers
      parameters:
      - name: employee_id
        in: path
        required: true
        schema:
          pattern: ee_.+
          type: string
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: page
        in: query
        description: The page of results to return. Defaults to 1 if not provided.
        schema:
          type: integer
          description: The page of results to return. Defaults to 1 if not provided.
          format: int32
      - name: page_size
        in: query
        description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
        schema:
          type: integer
          description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeHealthInsuranceOfferResponsePagedList'
        '404':
          description: Not Found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /employees/{employee_id}/health_insurance/policies:
    get:
      tags:
      - Health Insurance
      summary: List all employee policies
      description: Returns a list of group health insurance `policies` for an `employee`. The `policies` are returned sorted by creation date, with the most recent `policy` appearing first.
      operationId: ListEmployeeHealthInsurancePolicies
      parameters:
      - name: employee_id
        in: path
        required: true
        schema:
          pattern: ee_.+
          type: string
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: status
        in: query
        description: 'Multiple values can be provided by separating them with a comma. Allowed values are: `scheduled`, `active`, `expired`, `cancelled`.'
        schema:
          type: string
      - name: page
        in: query
        description: The page of results to return. Defaults to 1 if not provided.
        schema:
          type: integer
          description: The page of results to return. Defaults to 1 if not provided.
          format: int32
      - name: page_size
        in: query
        description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
        schema:
          type: integer
          description: The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeHealthInsurancePolicyResponsePagedList'
  /employees/{employee_id}/health_insurance/policies/{employee_policy_id}:
    get:
      tags:
      - Health Insurance
      summary: Retrieve an employee policy
      description: Retrieve group's health insurance `policy` for an `employee` by `employee_policy_id`.
      operationId: RetrieveEmployeeHealthInsurancePolicy
      parameters:
      - name: employee_id
        in: path
        required: true
        schema:
          pattern: ee_.+
          type: string
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
      - name: employee_policy_id
        in: path
        required: true
        schema:
          pattern: eehp_.+
          type: string
          example: eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmployeeHealthInsurancePolicyResponse'
        '404':
          description: Not Found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    HealthInsuranceCoverageLevelResponse:
      required:
      - documents
      - plan_currency
      - plan_id
      - plan_name
      - provider_logo_url
      - provider_name
      type: object
      properties:
        plan_id:
          pattern: pl_.+
          type: string
          description: Unique identifier for the health insurance plan
          example: pl_3b1333d87d9d4fd6ad83ba7f6b0e951a
        plan_name:
          type: string
          description: Name of the health insurance plan
        plan_currency:
          allOf:
          - $ref: '#/components/schemas/CurrencyCode'
          description: Currency code of the health insurance plan
        provider_name:
          type: string
          description: Name of the health insurance provider
        provider_logo_url:
          type: string
          description: Logo URL of the health insurance provider
        provider_employer_platform_url:
          type:
          - 'null'
          - string
          description: URL to the health insurance provider's website for Employer Management
        provider_support_phone:
          type:
          - 'null'
          - string
          description: Support phone number to the health insurance provider's website for Employer Management
        documents:
          type: array
          items:
            $ref: '#/components/schemas/HealthInsuranceCoverageLevelDocumentResponse'
          description: Documents related to the health insurance plan, these documents may change at renewal, this includes the documents like `Insurance Product Information Document`, `Hospital Lists`, `Table of Cover` etc
      additionalProperties: false
    EmployerHealthInsurancePolicyResponse:
      required:
      - coverage_levels
      - employer_cancellation_period_length
      - employer_id
      - end_date
      - enrolment_type
      - id
      - renewal
      - start_date
      - status
      type: object
      properties:
        object:
          type: string
          description: The object type
          readOnly: true
        id:
          pattern: erhp_.+
          type: string
          description: Unique identifier for policy
          example: erhp_3b1333d87d9d4fd6ad83ba7f6b0e951a
        employer_id:
          pattern: er_.+
          type: string
          description: The Id of the employer for which the policy is created
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
        start_date:
          type: string
          description: Policy starts on this date
          format: date
          example: '2024-12-01'
        end_date:
          type: string
          description: Policy ends on this date
          format: date
          example: '2024-12-01'
        cancellation_date:
          type:
          - 'null'
          - string
          description: Policy was cancelled on this date, if cancellation occured
          format: date
          example: '2024-12-01'
        group_policy_number:
          type:
          - 'null'
          - string
          description: Group’s health insurance policy number, if available
        status:
          allOf:
          - $ref: '#/components/schemas/EmployerHealthInsurancePolicyStatus'
          description: Current status of policy
        enrolment_type:
          allOf:
          - $ref: '#/components/schemas/EnrolmentType'
          description: Enrolment type of the policy
        renewal:
          allOf:
          - $ref: '#/components/schemas/GetEmployerHealthPolicyRenewal'
          description: Renewal information for the policy
        employer_cancellation_period_length:
          type: integer
          description: How many days the employer has to cancel the policy since the policy starts
          format: int32
          example: 123
        coverage_levels:
          type: array
          items:
            $ref: '#/components/schemas/HealthInsuranceCoverageLevelResponse'
          description: Represents the available coverage levels for this policy
      additionalProperties: false
    HealthInsuranceRequiredActionResponse:
      required:
      - code
      - due_at
      - reason
      - reason_description
      type: object
      properties:
        reason:
          type: string
          description: Concise reason for the required action
        reason_description:
          type: string
          description: Description for the required action
        code:
          type: string
          description: Identified the type of action required, not unique across health insurance providers
        due_at:
          type: string
          description: Date and time by which the action is due, if this is not completed then the policy will not be issued.
          format: date
          example: '2024-12-01'
      additionalProperties: false
    EmployeeHealthInsuranceOfferStatus:
      enum:
      - action_required
      - not_undertaken
      - accepted
      type: string
    EmployerHealthInsuranceQuoteResponsePagedList:
      required:
      - items
      - page
      - page_size
      - total_count
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/EmployerHealthInsuranceQuoteResponse'
          description: A paginated array containing the response elements
        page:
          type: integer
          description: The current page of the results
          format: int32
          example: 123
        page_size:
          type: integer
          description: 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
          format: int32
          example: 123
        total_count:
          type: integer
          description: 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.
          format: int32
          example: 123
        has_next_page:
          type: boolean
          description: Whether there are more pages available after this page
          readOnly: true
          example: true
        has_previous_page:
          type: boolean
          description: Whether there are more pages available before this page
          readOnly: true
          example: true
      additionalProperties: false
    HealthInsuranceCoverageLevelDocumentResponse:
      required:
      - link
      - title
      type: object
      properties:
        title:
          type: string
          description: Health Insurance Document Title
        link:
          type: string
          description: Health Insurance Document Link (can be a link to a website or a file path)
      additionalProperties: false
    EmployerHealthInsurancePolicyStatus:
      enum:
      - scheduled
      - active
      - expired
      - cancelled
      type: string
    HealthInsuranceGrossEstimationAmountResponse:
      required:
      - employee_contribution
      - employer_contribution
      - total
      type: object
      properties:
        employee_contribution:
          type: number
          description: Estimated gross premium amount deducted from employee payroll
          format: double
          example: 123.45
        employer_contribution:
          type: number
          description: Estimated gross premium amount paid by the employer
          format: double
          example: 123.45
        total:
          type: number
          description: Total gross premium amount (sum of employee and employer contributions).
          format: double
          example: 123.45
      additionalProperties: false
    CurrencyCode:
      enum:
      - eur
      - aed
      - afn
      - xcd
      - all
      - amd
      - aoa
      - ars
      - usd
      - aud
      - awg
      - azn
      - bam
      - bbd
      - bdt
      - xof
      - bgn
      - bhd
      - bif
      - bmd
      - bnd
      - bob
      - bov
      - brl
      - bsd
      - inr
      - btn
      - nok
      - bwp
      - byn
      - bzd
      - cad
      - xaf
      - cdf
      - chf
      - che
      - chw
      - nzd
      - clp
      - clf
      - cny
      - cop
      - cou
      - crc
      - cup
      - cuc
      - cve
      - ang
      - czk
      - djf
      - dkk
      - dop
      - dzd
      - egp
      - mad
      - ern
      - etb
      - fjd
      - fkp
      - mdl
      - gbp
      - gel
      - ghs
      - gip
      - gmd
      - gnf
      - gtq
      - gyd
      - hkd
      - hnl
      - hrk
      - htg
      - huf
      - idr
      - xdr
      - ils
      - iqd
      - irr
      - isk
      - jmd
      - jod
      - jpy
      - kes
      - kgs
      - khr
      - kmf
      - kpw
      - krw
      - kwd
      - kyd
      - kzt
      - lak
      - lbp
      - lkr
      - lrd
      - lsl
      - zar
      - lyd
      - mga
      - mkd
      - mmk
      - mnt
      - mop
      - mru
      - mur
      - mvr
      - mwk
      - mxn
      - mxv
      - myr
      - mzn
      - nad
      - xpf
      - ngn
      - nio
      - npr
      - omr
      - pab
      - pen
      - pgk
      - php
      - pkr
      - pln
      - pyg
      - qar
      - ron
      - rsd
      - rub
      - rwf
      - sar
      - sbd
      - scr
      - sdg
      - sek
      - sgd
      - shp
      - sll
      - sos
      - srd
      - ssp
      - stn
      - svc
      - xsu
      - syp
      - twd
      - szl
      - thb
      - tjs
      - tmt
      - tnd
      - top
      - try
      - ttd
      - tzs
      - uah
      - ugx
      - usn
      - uyu
      - uyi
      - uyw
      - uzs
      - ves
      - vnd
      - vuv
      - wst
      - yer
      - xua
      - zmw
      - zwl
      type: string
    EmployerHealthInsuranceQuoteStatus:
      enum:
      - pending_quote
      - action_required
      - not_undertaken
      - accepted
      - pending_insurer_acceptance
      type: string
    EmployeeHealthPolicyRenewal:
      required:
      - decision_confirmed
      - renewal_date
      - status
      - window_end_date
      - window_start_date
      type: object
      properties:
        status:
          allOf:
          - $ref: '#/components/schemas/EmployerHealthInsurancePolicyRenewalStatus'
          description: The current status of the renewal
        renewal_date:
          type: string
          description: Policy renewal date
          format: date
          example: '2024-12-01'
        window_start_date:
          type: string
          description: Renewal window starts on this day
          format: date
          example: '2024-12-01'
        window_end_date:
          type: string
          description: Renewal window ends at the end of this day
          format: date
          example: '2024-12-01'
        decision_confirmed:
          type: boolean
          description: Whether the decision to renew the policy has been confirmed
          example: true
        renewed_health_insurance_id:
          pattern: eehp_.+
          type:
          - 'null'
          - string
          description: The ID of the renewed health insurance policy, if renewed
          example: eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a
      additionalProperties: false
    EmployeeHealthInsurancePolicyStatus:
      enum:
      - scheduled
      - active
      - expired
      - cancelled
      type: string
    EmployeeHealthInsuranceOfferResponse:
      required:
      - coverage_level
      - employee_id
      - employer_id
      - id
      - status
      type: object
      properties:
        object:
          type: string
          description: The object type
          readOnly: true
        id:
          pattern: eeho_.+
          type: string
          description: Unique identifier for offer
          example: eeho_3b1333d87d9d4fd6ad83ba7f6b0e951a
        employer_id:
          pattern: er_.+
          type: string
          description: The Id of the employer for which the offer is available
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
        employee_id:
          pattern: ee_.+
          type: string
          description: The Id of the employee for which the offer is available
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
        external_customer_id:
          type:
          - 'null'
          - string
          description: A unique identifier assigned by the Employer of Record (EoR) platform to the Customer (i.e. the company using the EoR service) for which the employee is employed. This ID groups employees under this Customer, enabling the aggregation of contribution reporting and other values per Customer rather than per legal entity. This parameter is only available to EoR platforms.
        status:
          allOf:
          - $ref: '#/components/schemas/EmployeeHealthInsuranceOfferStatus'
          description: Current status of offer
        required_action:
          type: 'null'
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceRequiredActionResponse'
          description: Required action to progress the offer, if any. Set only when `status` is `action_required`.
        coverage_level:
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceCoverageLevelResponse'
          description: Details about the coverage level for the offer. Only a single level of cover is available for a specific employee!
      additionalProperties: false
    EmployerHealthInsurancePolicyRenewalStatus:
      enum:
      - upcoming
      - open
      - renewed
      - cancelled
      type: string
    EmployerHealthInsurancePolicyResponsePagedList:
      required:
      - items
      - page
      - page_size
      - total_count
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/EmployerHealthInsurancePolicyResponse'
          description: A paginated array containing the response elements
        page:
          type: integer
          description: The current page of the results
          format: int32
          example: 123
        page_size:
          type: integer
          description: 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
          format: int32
          example: 123
        total_count:
          type: integer
          description: 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.
          format: int32
          example: 123
        has_next_page:
          type: boolean
          description: Whether there are more pages available after this page
          readOnly: true
          example: true
        has_previous_page:
          type: boolean
          description: Whether there are more pages available before this page
          readOnly: true
          example: true
      additionalProperties: false
    EnrolmentType:
      enum:
      - opt_out
      - opt_in
      type: string
    EmployeeHealthInsurancePolicyResponse:
      required:
      - coverage_level
      - employee_id
      - employer_id
      - end_date
      - enrolled_dependants_count
      - enrolment_type
      - estimated_gross_premium
      - id
      - opt_out_deadline_date
      - renewal
      - start_date
      - status
      type: object
      properties:
        object:
          type: string
          description: The object type
          readOnly: true
        id:
          pattern: eehp_.+
          type: string
          description: Unique identifier for policy
          example: eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a
        employer_id:
          pattern: er_.+
          type: string
          description: The Id of the employer for which the policy is created
          example: er_3b1333d87d9d4fd6ad83ba7f6b0e951a
        employee_id:
          pattern: ee_.+
          type: string
          description: The Id of the employee for which the policy is created
          example: ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
        external_customer_id:
          type:
          - 'null'
          - string
          description: A unique identifier assigned by the Employer of Record (EoR) platform to the Customer (i.e. the company using the EoR service) for which the employee is employed. This ID groups employees under this Customer, enabling the aggregation of contribution reporting and other values per Customer rather than per legal entity. This parameter is only available to EoR platforms.
        start_date:
          type: string
          description: Policy starts on this date
          format: date
          example: '2024-12-01'
        end_date:
          type: string
          description: Policy ends on this date
          format: date
          example: '2024-12-01'
        cancellation_date:
          type:
          - 'null'
          - string
          description: Policy was cancelled on this date, if cancellation occured
          format: date
          example: '2024-12-01'
        policy_number:
          type:
          - 'null'
          - string
          description: Health insurance policy number, if available
        status:
          allOf:
          - $ref: '#/components/schemas/EmployeeHealthInsurancePolicyStatus'
          description: Current status of policy
        enrolment_type:
          allOf:
          - $ref: '#/components/schemas/EnrolmentType'
          description: Enrolment type of the policy
        renewal:
          allOf:
          - $ref: '#/components/schemas/EmployeeHealthPolicyRenewal'
          description: Renewal information for the policy
        opt_out_deadline_date:
          type: string
          description: Last day to opt out from the policy
          format: date
          example: '2024-12-01'
        coverage_level:
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceCoverageLevelResponse'
          description: Represents the current coverage level for the policy
        enrolled_dependants_count:
          type: integer
          description: Number of dependants (spouse, children, or other eligible family members) currently enrolled in this health insurance policy.
          format: int32
          example: 123
        estimated_gross_premium:
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceEstimatedGrossPremiumResponse'
          description: 'Estimated gross premium amounts for this health insurance policy based on current enrollment and policy configuration. Important: These estimates are for planning purposes only and may differ from actual billed amounts due to life events, policy changes, insurer billing practices, or timing adjustments. For accurate payroll amounts, use the Contribution Reporting API.'
      additionalProperties: false
    HealthInsuranceEstimatedGrossPremiumResponse:
      required:
      - currency
      - monthly
      - term
      type: object
      properties:
        currency:
          allOf:
          - $ref: '#/components/schemas/CurrencyCode'
          description: Three-letter currency code (e.g., "EUR", "USD", "GBP") for all monetary amounts in this object.
        monthly:
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceGrossEstimationAmountResponse'
          description: Estimated monthly gross premium amounts representing regular monthly charges.
        term:
          allOf:
          - $ref: '#/components/schemas/HealthInsuranceGrossEstimationAmountResponse'
          description: 'Estimated total gross premium amounts for the complete policy term from start date to renewal date. Note: These amounts reflect the full policy term and do not adjust for early cancellation.'
      additionalProperties: false
    GetEmployerHealthPolicyRenewal:
      required:
      - decision_confirmed
      - renewal_date
      - status
      - window_end_date
      - window_start_date
      type: object
      properties:
        status:
          allOf:
          - $ref: '#/components/schemas/EmployerHealthInsurancePolicyRenewalStatus'
          description: The current status of the renewal
        renewal_date:
          type: string
          description: Policy renewal date
          format: date
          example: '2024-12-01'
        window_start_date:
          type: string
          description: Renewal window starts on this day
          format: date
          example: '2024-12-01'
        window_end_date:
          type: string
          description: Renewal window ends at the end of this day
          format: date
          example: '2024-12-01'
        decision_confirmed:
          type: boolean
          description: Whether the decision to renew the policy has been confirmed
          example: true
        renewed_health_insurance_id:
          pattern: erhp_.+
          type:
          - 'null'
          - string
          description: The ID of the renewed health insurance policy, if renewed
          example: erhp_3b1333d87d9d4fd6ad83ba7f6b0e951a
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - 'null'
          - string
        title:
          type:
          - 'null'
          -

# --- truncated at 32 KB (36 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/kota/refs/heads/main/openapi/kota-health-insurance-api-openapi.yml