Car
Get Car Model Lookups

API Information

Name: Get Car Model Lookups

Description: It will return all the car models in response.

Basic Info

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

Request Body

JSON
{
  "model": "10302750" // value will be the "code" returned in car_makes lookup
}

Response Body

JSON
[
  {
    "id": 573,
    "code": "10295823",
    "car_make_code": "10295539",
    "text": "ASTRO",
    "vehicleTypeId": 1,
    "cylinder": "6",
    "seatCapacity": 8,
    "rtaMakeCode": 10053,
    "rtaModelCode": 310000000962
  }
  // ...
]