API Documentation

RegCheck API — VIN Check

The VIN Check endpoint returns basic vehicle information from a chassis (VIN) number, with best results in Europe, Australia, and the USA.

Endpoint

https://www.regcheck.org.uk/api/reg.asmx?op=VinCheck

Test VIN: WV2ZB0256GH007431

Fields Returned

  • Make / Model
  • Year
  • Engine Size
  • Transmission
  • Body Style
  • Country of Manufacture

Sample JSON

{
  "Make": "VOLKSWAGEN",
  "Model": "Jetta",
  "Year": "2009",
  "Engine": "1968",
  "Transmission": "",
  "BodyStyle": "Sedan/Saloon",
  "Country": "Mexico"
}

Extended VIN Response (with French CNIT data)

When French CNIT data is available, a Cnit sub-object is also returned:

{
  "Cnit": {
    "Make": "NISSAN",
    "Model": "PATHFINDER",
    "Designation": "PATHFINDER 2.5 dCi (190ch) DPF 7PL",
    "Fuel": "Gazole",
    "Box": "M 6",
    "CNIT": "M10NSSVP0027612",
    "TVV": "R51GG01",
    "Hybrid": "non",
    "Fiscal": "12",
    "KW": "140",
    "CV": "190"
  },
  "Make": "Nissan",
  "Model": "Pathfinder",
  "Year": "2012",
  "Engine": "4.0 Liter",
  "Transmission": "Automatic",
  "BodyStyle": "Mid-size SUV",
  "Country": "United States"
}