Insurance Disclosures
Insurance disclosures explain who underwrites an insurance policy and who arranges or distributes the insurance product. If you build a custom UI with Kota’s API, display the disclosures returned by the API whenever a user is viewing or acting on a specific insurance plan, quote, policy, or policy change.
If you use Kota Hosted or the Kota Embed SDK for the full user journey, Kota handles disclosure placement inside the hosted or embedded experience. Use this guide when you build custom UI around insurance journeys, render insurance cards outside the embedded surface, or use the API-only integration.
Do not hardcode provider, underwriter, intermediary, or region-specific disclosure copy
in your application. Kota returns the current disclosure text in each relevant resource’s
disclosures array.
Disclosure object
Disclosures are returned as DisclosureResponse objects:
Key disclosure types
If both disclosure types are returned, display both. In a footer, show the underwriter disclaimer first and the intermediary role second.
Where to retrieve disclosures
Read disclosures from the resource that powers the screen you are rendering. The
disclosures array on that resource is the source of truth for the copy to display.
The provider list endpoints identify available providers, but they do not provide the
disclosure copy for a selected insurance product. Once a plan, quote, intent, group
policy, or policy is in context, use that resource’s disclosures array.
Display notes
Show insurance disclosures only when a specific insurance product, plan, quote, policy, or policy change is at play.
Decision tree for new screens
When introducing a new insurance-related screen, answer this question:
Is there a specific insurance product, plan, quote, policy, or policy change at play?
Examples include:
- A single plan is being shown
- A single quote is being reviewed
- A single policy is being managed
- A user is adding or editing dependents on a specific plan or policy
- Active cover is visible
If yes, display the returned underwriter_disclaimer and intermediary_role
disclosures when available.
If no, do not show insurance disclosures.
As a rule of thumb: if the user can see or act on a specific insurance product, plan, quote, policy, or policy change, show the disclosures returned for that resource. If the screen is generic or no specific insurance context is selected, show no insurance disclosures.
When to show disclosures
Show the returned underwriter_disclaimer and intermediary_role disclosures when the
user can see or interact with a specific insurance product or policy context, such as:
- Plan selection
- Quote review
- Additional information for a selected plan or policy
- Adding or editing dependents for a selected plan or policy
- Opt-in confirmation
- Opt-out confirmation for a specific policy
- Employer quote acceptance
- Policy view and policy details
- Active policy cards
If the API returns only one of the disclosure types, display the one returned. If the
disclosures array is empty, do not render an empty disclosure area.
When to not show disclosures
Do not show insurance disclosures when there is no selected or displayed insurance product, plan, quote, policy, or provider-backed policy context, such as:
- No insurance available
- Opt-out success after the action is complete
- Generic landing pages
- Provider discovery before a plan is selected
- Employer dashboards that only show setup progress without a specific plan, quote, or active policy card
- Employees who have opted out and are not reviewing a specific policy action
Employee journey mapping
Employer journey mapping
Placement guidance
Footer
Use the page footer as the primary location for insurance disclosures. Render the underwriter disclaimer first and the intermediary role second when both are present.
Policy cards
When a card represents a specific active or pending policy, you may also render the relevant disclosure text in the card footer. This is useful when a dashboard shows multiple policies with different providers or disclosure text.
Headers and top bars
Keep persistent headers and top bars generic. For example, a header may state Insurance services powered by Kota, while the insurer and intermediary disclosure text appears in the footer or policy card footer for the selected insurance context.

