
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
- Your application collects user data required for a quote.
- Make a POST request to
/v1/quotes/motorwith the user data. - The API returns a `quoteId` and premium details.
- Display the quote to the user. If they accept, proceed.
- Make a POST request to
/v1/policiesusing the `quoteId`. - 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"
}