v1

latestOpenAPI 3.1.0Proprietary2026-08-061935150.4 KB
Listings

Search vehicle listings

Search current vehicle listings on the market. Filter by make, model, and year with pagination support.

get/listing

Query parameters

make'acura' | 'alfa-romeo' | 'audi' | 'bmw' | 'cadillac' | 'chevrolet' | 'citroen' | 'cupra' | 'dacia' | 'dodge' | 'ferrari' | 'fiat' | 'ford' | 'gmc' | 'honda' | 'hyundai' | 'jaguar' | 'jeep' | 'kia' | 'land-rover' | 'lexus' | 'mazda' | 'mercedes-benz' | 'mg' | 'mini' | 'mitsubishi' | 'nissan' | 'opel' | 'peugeot' | 'porsche' | 'ram' | 'renault' | 'seat' | 'skoda' | 'subaru' | 'suzuki' | 'tesla' | 'toyota' | 'volvo' | 'vw'
Example:toyota

Filter by vehicle manufacturer (40 makes supported)

modelstring
Example:Camry

Filter by vehicle model

yearinteger
Example:2020

Filter by manufacturing year

limitinteger

Number of results to return (1-50, default 10)

offsetinteger

Number of results to skip for pagination (capped at 10000)

Response

List of vehicle listings

Example response

{
  "listings": [
    {
      "vin": "WVWZZZ3CZWE123456",
      "specifications": {
        "make": "Toyota",
        "model": "Camry",
        "fuel": "petrol",
        "transmission": "automatic",
        "registrationDate": "2020-03-15"
      },
      "availability": {
        "imagesCount": 12,
        "plateNumbersCount": 2,
        "historyItemsCount": 8
      }
    }
  ],
  "pagination": {
    "limit": 10
  }
}