Car
Get All Car Lookups

API Information

Name: Get Lookups (Get Dropdown Options)

Description: It will return all Lookups for car required for create-quote API

Basic Info

Basic
Method: POST
Endpoint: <API_BASE_URL>/capi/api/v1-get-car-models
 
---
 
REQUEST HEADERS:
x-api-token: <REQUIRED>
Content-Type: application/json

Request Body

JSON
{}

Response Body

JSON
{
  "backHomeLicenseHeldFor": [
    {
      "id": 1,
      "text": "0 to 6 months"
    }
    // ...
  ],
  "carMake": [
    {
      
      "id": 2,
      "code": "10304332",
      "text": "ACURA",
      "rtaMakeCode": 10005
    }
    // ...
  ],
  "carTypeInsurance": [
    {
      "id": 1,
      "text": "Comprehensive (full insurance)"
    },
    {
      "id": 2,
      "text": "Third Party Only"
    }
  ],
  "claimHistory": [
    {
      "id": 1,
      "text": "No claims in the past year"
    }
    // ...
  ],
  "currentlyWith": [
    {
      "id": 1,
      "text": "Royal & Sun Alliance Insurance (RSA)"
    }
    // ...
  ],
  "emiratesOfRegistration": [
    {
      "id": 1,
      "text": "Ajman"
    }
    // ...
  ],
  "nationality": [
    {
      "country_name": "(other)",
      "id": 195,
      "is_sanctioned": 0,
      "text": "(other)"
    }
    // ...
  ],
  "uaeLicenseHeldFor": [
    {
      "id": 1,
      "text": "0 to 6 months"
    }
    // ...
  ],
  "vehicleRegistrationType": [
    {
      "code": "COO",
      "text": "Change of Ownership"
    }
    // ...
  ],
  "vehicleType": [
    {
      "id": 1,
      "text": "SUV"
    }
    // ...
  ],
  "yearOfManufacture": [
    {
      "id": 1,
      "text": "2021"
    }
    // ...
  ]
}