Car
Get Car Trim Lookups

API Information

Name: Get Car Trim (Specifications) Lookups

Description: It will return all the car trim lookups in response.

Basic Info

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

Request Body

JSON
{
  "modelId": "943" // value will be the "id" returned in car_models lookup
}

Response Body

JSON
[
  {
    "id": 818,
    "code": "10302791",
    "car_make_code": "10302750",
    "text": "CAMRY",
    "vehicleTypeId": 4,
    "cylinder": "4",
    "seatCapacity": 5
  }
  // ...
]