Life

Life

Ensure financial security for your loved ones with our life insurance.

Use Cases

Our Life API allows you to seamlessly integrate insurance functionality into your platform. Common use cases include:

  • Getting a Quote: Instantly generate insurance quotes for your users based on their provided data.
  • Creating a Policy: Programmatically create new insurance policies after a user accepts a quote.
  • Managing Claims: Allow users to submit and track the status of their claims directly through your application.
  • Policy Renewals: Automate notifications and actions for upcoming policy renewals.
Sample Flow: Quote to Policy
  1. Your application collects user data required for a quote.
  2. Make a POST request to /v1/quotes/life with the user data.
  3. The API returns a `quoteId` and premium details.
  4. Display the quote to the user. If they accept, proceed.
  5. Make a POST request to /v1/policies using the `quoteId`.
  6. The API creates the policy and returns the full policy object.
Data Model

This is a simplified representation of the policy object for Life.

{
  "quoteId": "string",
  "policyholder": {
    "name": "string",
    "email": "string",
    "address": "string"
  },
  "coverage": {
    "type": "string",
    "limit": "number",
    "deductible": "number"
  },
  "premium": "number",
  "status": "string"
}