Search Vehicle by ID

Get summary data on a vehicle by searching for its ID

If you know a Vehicle's ID already and would like summary data you can leverage a basic vehicle search.

Retrieve a vehicle by unique ID

get

Retrieves details of a vehicle by its unique ID.

Path parameters
vehicle_idstringRequired

ID of the vehicle returned from a search

Responses
200

Vehicle ID Search Response

application/json
get
GET /v1/vehicles/{vehicle_id} HTTP/1.1
Host: 
Accept: */*
{
  "success": true,
  "vehicle": {
    "id": 2983792384791283,
    "region": "nz",
    "title": "2007 Mitsubishi Outlander XLS Automatic",
    "year": 2007,
    "make": "Mitsubishi",
    "model": "Outlander",
    "badge": "XLS",
    "series": null,
    "model_year": null,
    "release_month": 1,
    "release_year": 2007,
    "body_type": "Wagon",
    "body_config": null,
    "transmission": "Continuously Variable (CVT)",
    "transmission_type": "Automatic",
    "wheelbase": null,
    "wheelbase_type": null,
    "fuel": "Petrol",
    "fuel_type": "Petrol",
    "engine": "Piston",
    "engine_type": "Piston",
    "drive": "AWD",
    "drive_type": "Four Wheel Drive",
    "num_doors": 5,
    "num_seats": 5,
    "num_gears": 6,
    "num_cylinders": 4,
    "capacity_cc": 2359,
    "power_kw": 127,
    "torque_nm": 230,
    "range": 250
  }
}

Last updated