Motor

Motor

Flexible and reliable motor insurance for individuals and businesses.

Use Cases

Our Motor 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/motor 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 Motor.

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