VIN Decoder API Reference

API Overview

VIN Decoder is a simple tool for decoding vehicle identification numbers. It returns the make, model, and more of the vehicle.

To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.

View API in Directory

Decode VIN

10 Token

Decode a vehicle identification number to get vehicle information

	
#GET Request
https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352	

	
					

x-api-key (required)

This is a required header on every request. Your API Key is found from within your dashboard

accept

This is an optional header. Set the value to application/json, application/xml, or application/yaml


vinstring(required)

The vehicle identification number to decode


Sample Request
	
import requests

url = "https://api.apiverve.com/v1/vindecoder"

querystring = {'vin': '1HGCM82633A004352'}

headers = {
	"x-api-key": "YOUR_API_KEY"
}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
	
							
	
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
	Method = HttpMethod.Get,
	RequestUri = new Uri("https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352"),
	Headers =
	{
		{ "x-api-key", "YOUR_API_KEY" }
	},
};
using (var response = await client.SendAsync(request))
{
	response.EnsureSuccessStatusCode();
	var body = await response.Content.ReadAsStringAsync();
	Console.WriteLine(body);
}
	
							
	
const data = null;

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
	if (this.readyState === this.DONE) {
		console.log(this.responseText);
	}
});

xhr.open('GET', 'https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352');
xhr.setRequestHeader('x-api-key', 'YOUR_API_KEY');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');

xhr.send(data);
	
							
	
const request = require('request');

const options = {
  method: 'GET',
  url: 'https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352',
  headers: {
    'x-api-key': 'YOUR_API_KEY'
  }
};

request(options, function (error, response, body) {
	if (error) throw new Error(error);

	console.log(body);
});
	
							
	
HttpRequest request = HttpRequest.newBuilder()
		.uri(URI.create("https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352"))
		.header("x-api-key", "YOUR_API_KEY")
		.method("GET", HttpRequest.BodyPublishers.noBody())
		.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
	
							
	
import Foundation

let headers = [
	"x-api-key": "YOUR_API_KEY"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352")! as URL,
				cachePolicy: .useProtocolCachePolicy,
                timeoutInterval: 10.0)

request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
	if (error != nil) {
		print(error as Any)
	} else {
		let httpResponse = response as? HTTPURLResponse
		print(httpResponse)
	}
})

dataTask.resume()
	
							
	
curl --request GET \
	--url 'https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352' \
	--header 'x-api-key: YOUR_API_KEY'
	
							

Sample Response
	
{
  "status": "ok",
  "error": null,
  "data": {
    "make": "HONDA",
    "manufacturer": "AMERICAN HONDA MOTOR CO., INC.",
    "model": "Accord",
    "options": {
      "abs": "",
      "activesafetysysnote": "",
      "adaptivecruisecontrol": "",
      "adaptivedrivingbeam": "",
      "adaptiveheadlights": "",
      "additionalerrortext": "",
      "airbagloccurtain": "1st and 2nd Rows",
      "airbaglocfront": "1st Row (Driver and Passenger)",
      "airbaglocknee": "",
      "airbaglocseatcushion": "",
      "airbaglocside": "1st Row (Driver and Passenger)",
      "automaticpedestrianalertingsound": "",
      "autoreversesystem": "",
      "axleconfiguration": "",
      "axles": "",
      "baseprice": "",
      "batterya": "",
      "batterya_to": "",
      "batterycells": "",
      "batteryinfo": "",
      "batterykwh": "",
      "batterykwh_to": "",
      "batterymodules": "",
      "batterypacks": "",
      "batterytype": "",
      "batteryv": "",
      "batteryv_to": "",
      "bedlengthin": "",
      "bedtype": "Not Applicable",
      "blindspotintervention": "",
      "blindspotmon": "",
      "bodycabtype": "Not Applicable",
      "bodyclass": "Coupe",
      "brakesystemdesc": "",
      "brakesystemtype": "",
      "busfloorconfigtype": "Not Applicable",
      "buslength": "",
      "bustype": "Not Applicable",
      "can_aacn": "",
      "cashforclunkers": "",
      "chargerlevel": "",
      "chargerpowerkw": "",
      "cib": "",
      "coolingtype": "",
      "curbweightlb": "",
      "custommotorcycletype": "Not Applicable",
      "daytimerunninglight": "",
      "destinationmarket": "",
      "displacementcc": "2998.832712",
      "displacementci": "183",
      "displacementl": "2.998832712",
      "doors": "2",
      "driverassist": "",
      "drivetype": "",
      "dynamicbrakesupport": "",
      "edr": "",
      "electrificationlevel": "",
      "engineconfiguration": "V-Shaped",
      "enginecycles": "",
      "enginecylinders": "6",
      "enginehp": "240",
      "enginehp_to": "",
      "enginekw": "",
      "enginemanufacturer": "",
      "enginemodel": "J30A4",
      "entertainmentsystem": "",
      "errorcode": "0",
      "errortext": "0 - VIN decoded clean. Check Digit (9th position) is correct",
      "esc": "",
      "evdriveunit": "",
      "forwardcollisionwarning": "",
      "fuelinjectiontype": "",
      "fueltypeprimary": "Gasoline",
      "fueltypesecondary": "",
      "gcwr": "",
      "gcwr_to": "",
      "gvwr": "Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)",
      "gvwr_to": "Class 1: 6,000 lb or less (2,722 kg or less)",
      "keylessignition": "",
      "lanecenteringassistance": "",
      "lanedeparturewarning": "",
      "lanekeepsystem": "",
      "lowerbeamheadlamplightsource": "",
      "makeid": "474",
      "manufacturerid": "988",
      "modelid": "1861",
      "motorcyclechassistype": "Not Applicable",
      "motorcyclesuspensiontype": "Not Applicable",
      "ncsabodytype": "",
      "ncsamake": "",
      "ncsamapexcapprovedby": "",
      "ncsamapexcapprovedon": "",
      "ncsamappingexception": "",
      "ncsamodel": "",
      "ncsanote": "",
      "nonlanduse": "",
      "note": "",
      "otherbusinfo": "",
      "otherengineinfo": "",
      "othermotorcycleinfo": "",
      "otherrestraintsysteminfo": "Seat Belt (Rr center position)",
      "othertrailerinfo": "",
      "parkassist": "",
      "pedestrianautomaticemergencybraking": "",
      "plantcity": "MARYSVILLE",
      "plantcompanyname": "",
      "plantcountry": "UNITED STATES (USA)",
      "plantstate": "OHIO",
      "possiblevalues": "",
      "pretensioner": "",
      "rearautomaticemergencybraking": "",
      "rearcrosstrafficalert": "",
      "rearvisibilitysystem": "",
      "saeautomationlevel": "",
      "saeautomationlevel_to": "",
      "seatbeltsall": "Manual",
      "seatrows": "",
      "seats": "",
      "semiautomaticheadlampbeamswitching": "",
      "series": "",
      "series2": "",
      "steeringlocation": "",
      "suggestedvin": "",
      "topspeedmph": "",
      "tpms": "",
      "trackwidth": "",
      "tractioncontrol": "",
      "trailerbodytype": "Not Applicable",
      "trailerlength": "",
      "trailertype": "Not Applicable",
      "transmissionspeeds": "5",
      "transmissionstyle": "Automatic",
      "trim": "EX-V6",
      "trim2": "",
      "turbo": "",
      "valvetraindesign": "Single Overhead Cam (SOHC)",
      "vehicledescriptor": "1HGCM826*3A",
      "vehicletype": "PASSENGER CAR",
      "wheelbaselong": "",
      "wheelbaseshort": "",
      "wheelbasetype": "",
      "wheels": "",
      "wheelsizefront": "",
      "wheelsizerear": "",
      "windows": ""
    },
    "trim": "EX-V6",
    "vin": "1HGCM82633A004352",
    "year": "2003"
  },
  "code": 200
}
	
							
	
<Root>
  <status>ok</status>
  <error />
  <data>
    <make>HONDA</make>
    <manufacturer>AMERICAN HONDA MOTOR CO., INC.</manufacturer>
    <model>Accord</model>
    <options>
      <abs></abs>
      <activesafetysysnote></activesafetysysnote>
      <adaptivecruisecontrol></adaptivecruisecontrol>
      <adaptivedrivingbeam></adaptivedrivingbeam>
      <adaptiveheadlights></adaptiveheadlights>
      <additionalerrortext></additionalerrortext>
      <airbagloccurtain>1st and 2nd Rows</airbagloccurtain>
      <airbaglocfront>1st Row (Driver and Passenger)</airbaglocfront>
      <airbaglocknee></airbaglocknee>
      <airbaglocseatcushion></airbaglocseatcushion>
      <airbaglocside>1st Row (Driver and Passenger)</airbaglocside>
      <automaticpedestrianalertingsound></automaticpedestrianalertingsound>
      <autoreversesystem></autoreversesystem>
      <axleconfiguration></axleconfiguration>
      <axles></axles>
      <baseprice></baseprice>
      <batterya></batterya>
      <batterya_to></batterya_to>
      <batterycells></batterycells>
      <batteryinfo></batteryinfo>
      <batterykwh></batterykwh>
      <batterykwh_to></batterykwh_to>
      <batterymodules></batterymodules>
      <batterypacks></batterypacks>
      <batterytype></batterytype>
      <batteryv></batteryv>
      <batteryv_to></batteryv_to>
      <bedlengthin></bedlengthin>
      <bedtype>Not Applicable</bedtype>
      <blindspotintervention></blindspotintervention>
      <blindspotmon></blindspotmon>
      <bodycabtype>Not Applicable</bodycabtype>
      <bodyclass>Coupe</bodyclass>
      <brakesystemdesc></brakesystemdesc>
      <brakesystemtype></brakesystemtype>
      <busfloorconfigtype>Not Applicable</busfloorconfigtype>
      <buslength></buslength>
      <bustype>Not Applicable</bustype>
      <can_aacn></can_aacn>
      <cashforclunkers></cashforclunkers>
      <chargerlevel></chargerlevel>
      <chargerpowerkw></chargerpowerkw>
      <cib></cib>
      <coolingtype></coolingtype>
      <curbweightlb></curbweightlb>
      <custommotorcycletype>Not Applicable</custommotorcycletype>
      <daytimerunninglight></daytimerunninglight>
      <destinationmarket></destinationmarket>
      <displacementcc>2998.832712</displacementcc>
      <displacementci>183</displacementci>
      <displacementl>2.998832712</displacementl>
      <doors>2</doors>
      <driverassist></driverassist>
      <drivetype></drivetype>
      <dynamicbrakesupport></dynamicbrakesupport>
      <edr></edr>
      <electrificationlevel></electrificationlevel>
      <engineconfiguration>V-Shaped</engineconfiguration>
      <enginecycles></enginecycles>
      <enginecylinders>6</enginecylinders>
      <enginehp>240</enginehp>
      <enginehp_to></enginehp_to>
      <enginekw></enginekw>
      <enginemanufacturer></enginemanufacturer>
      <enginemodel>J30A4</enginemodel>
      <entertainmentsystem></entertainmentsystem>
      <errorcode>0</errorcode>
      <errortext>0 - VIN decoded clean. Check Digit (9th position) is correct</errortext>
      <esc></esc>
      <evdriveunit></evdriveunit>
      <forwardcollisionwarning></forwardcollisionwarning>
      <fuelinjectiontype></fuelinjectiontype>
      <fueltypeprimary>Gasoline</fueltypeprimary>
      <fueltypesecondary></fueltypesecondary>
      <gcwr></gcwr>
      <gcwr_to></gcwr_to>
      <gvwr>Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)</gvwr>
      <gvwr_to>Class 1: 6,000 lb or less (2,722 kg or less)</gvwr_to>
      <keylessignition></keylessignition>
      <lanecenteringassistance></lanecenteringassistance>
      <lanedeparturewarning></lanedeparturewarning>
      <lanekeepsystem></lanekeepsystem>
      <lowerbeamheadlamplightsource></lowerbeamheadlamplightsource>
      <makeid>474</makeid>
      <manufacturerid>988</manufacturerid>
      <modelid>1861</modelid>
      <motorcyclechassistype>Not Applicable</motorcyclechassistype>
      <motorcyclesuspensiontype>Not Applicable</motorcyclesuspensiontype>
      <ncsabodytype></ncsabodytype>
      <ncsamake></ncsamake>
      <ncsamapexcapprovedby></ncsamapexcapprovedby>
      <ncsamapexcapprovedon></ncsamapexcapprovedon>
      <ncsamappingexception></ncsamappingexception>
      <ncsamodel></ncsamodel>
      <ncsanote></ncsanote>
      <nonlanduse></nonlanduse>
      <note></note>
      <otherbusinfo></otherbusinfo>
      <otherengineinfo></otherengineinfo>
      <othermotorcycleinfo></othermotorcycleinfo>
      <otherrestraintsysteminfo>Seat Belt (Rr center position)</otherrestraintsysteminfo>
      <othertrailerinfo></othertrailerinfo>
      <parkassist></parkassist>
      <pedestrianautomaticemergencybraking></pedestrianautomaticemergencybraking>
      <plantcity>MARYSVILLE</plantcity>
      <plantcompanyname></plantcompanyname>
      <plantcountry>UNITED STATES (USA)</plantcountry>
      <plantstate>OHIO</plantstate>
      <possiblevalues></possiblevalues>
      <pretensioner></pretensioner>
      <rearautomaticemergencybraking></rearautomaticemergencybraking>
      <rearcrosstrafficalert></rearcrosstrafficalert>
      <rearvisibilitysystem></rearvisibilitysystem>
      <saeautomationlevel></saeautomationlevel>
      <saeautomationlevel_to></saeautomationlevel_to>
      <seatbeltsall>Manual</seatbeltsall>
      <seatrows></seatrows>
      <seats></seats>
      <semiautomaticheadlampbeamswitching></semiautomaticheadlampbeamswitching>
      <series></series>
      <series2></series2>
      <steeringlocation></steeringlocation>
      <suggestedvin></suggestedvin>
      <topspeedmph></topspeedmph>
      <tpms></tpms>
      <trackwidth></trackwidth>
      <tractioncontrol></tractioncontrol>
      <trailerbodytype>Not Applicable</trailerbodytype>
      <trailerlength></trailerlength>
      <trailertype>Not Applicable</trailertype>
      <transmissionspeeds>5</transmissionspeeds>
      <transmissionstyle>Automatic</transmissionstyle>
      <trim>EX-V6</trim>
      <trim2></trim2>
      <turbo></turbo>
      <valvetraindesign>Single Overhead Cam (SOHC)</valvetraindesign>
      <vehicledescriptor>1HGCM826*3A</vehicledescriptor>
      <vehicletype>PASSENGER CAR</vehicletype>
      <wheelbaselong></wheelbaselong>
      <wheelbaseshort></wheelbaseshort>
      <wheelbasetype></wheelbasetype>
      <wheels></wheels>
      <wheelsizefront></wheelsizefront>
      <wheelsizerear></wheelsizerear>
      <windows></windows>
    </options>
    <trim>EX-V6</trim>
    <vin>1HGCM82633A004352</vin>
    <year>2003</year>
  </data>
  <code>200</code>
</Root>
	
							
	
status: ok
error: 
data:
  make: HONDA
  manufacturer: AMERICAN HONDA MOTOR CO., INC.
  model: Accord
  options:
    abs: ''
    activesafetysysnote: ''
    adaptivecruisecontrol: ''
    adaptivedrivingbeam: ''
    adaptiveheadlights: ''
    additionalerrortext: ''
    airbagloccurtain: 1st and 2nd Rows
    airbaglocfront: 1st Row (Driver and Passenger)
    airbaglocknee: ''
    airbaglocseatcushion: ''
    airbaglocside: 1st Row (Driver and Passenger)
    automaticpedestrianalertingsound: ''
    autoreversesystem: ''
    axleconfiguration: ''
    axles: ''
    baseprice: ''
    batterya: ''
    batterya_to: ''
    batterycells: ''
    batteryinfo: ''
    batterykwh: ''
    batterykwh_to: ''
    batterymodules: ''
    batterypacks: ''
    batterytype: ''
    batteryv: ''
    batteryv_to: ''
    bedlengthin: ''
    bedtype: Not Applicable
    blindspotintervention: ''
    blindspotmon: ''
    bodycabtype: Not Applicable
    bodyclass: Coupe
    brakesystemdesc: ''
    brakesystemtype: ''
    busfloorconfigtype: Not Applicable
    buslength: ''
    bustype: Not Applicable
    can_aacn: ''
    cashforclunkers: ''
    chargerlevel: ''
    chargerpowerkw: ''
    cib: ''
    coolingtype: ''
    curbweightlb: ''
    custommotorcycletype: Not Applicable
    daytimerunninglight: ''
    destinationmarket: ''
    displacementcc: 2998.832712
    displacementci: 183
    displacementl: 2.998832712
    doors: 2
    driverassist: ''
    drivetype: ''
    dynamicbrakesupport: ''
    edr: ''
    electrificationlevel: ''
    engineconfiguration: V-Shaped
    enginecycles: ''
    enginecylinders: 6
    enginehp: 240
    enginehp_to: ''
    enginekw: ''
    enginemanufacturer: ''
    enginemodel: J30A4
    entertainmentsystem: ''
    errorcode: 0
    errortext: 0 - VIN decoded clean. Check Digit (9th position) is correct
    esc: ''
    evdriveunit: ''
    forwardcollisionwarning: ''
    fuelinjectiontype: ''
    fueltypeprimary: Gasoline
    fueltypesecondary: ''
    gcwr: ''
    gcwr_to: ''
    gvwr: 'Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)'
    gvwr_to: 'Class 1: 6,000 lb or less (2,722 kg or less)'
    keylessignition: ''
    lanecenteringassistance: ''
    lanedeparturewarning: ''
    lanekeepsystem: ''
    lowerbeamheadlamplightsource: ''
    makeid: 474
    manufacturerid: 988
    modelid: 1861
    motorcyclechassistype: Not Applicable
    motorcyclesuspensiontype: Not Applicable
    ncsabodytype: ''
    ncsamake: ''
    ncsamapexcapprovedby: ''
    ncsamapexcapprovedon: ''
    ncsamappingexception: ''
    ncsamodel: ''
    ncsanote: ''
    nonlanduse: ''
    note: ''
    otherbusinfo: ''
    otherengineinfo: ''
    othermotorcycleinfo: ''
    otherrestraintsysteminfo: Seat Belt (Rr center position)
    othertrailerinfo: ''
    parkassist: ''
    pedestrianautomaticemergencybraking: ''
    plantcity: MARYSVILLE
    plantcompanyname: ''
    plantcountry: UNITED STATES (USA)
    plantstate: OHIO
    possiblevalues: ''
    pretensioner: ''
    rearautomaticemergencybraking: ''
    rearcrosstrafficalert: ''
    rearvisibilitysystem: ''
    saeautomationlevel: ''
    saeautomationlevel_to: ''
    seatbeltsall: Manual
    seatrows: ''
    seats: ''
    semiautomaticheadlampbeamswitching: ''
    series: ''
    series2: ''
    steeringlocation: ''
    suggestedvin: ''
    topspeedmph: ''
    tpms: ''
    trackwidth: ''
    tractioncontrol: ''
    trailerbodytype: Not Applicable
    trailerlength: ''
    trailertype: Not Applicable
    transmissionspeeds: 5
    transmissionstyle: Automatic
    trim: EX-V6
    trim2: ''
    turbo: ''
    valvetraindesign: Single Overhead Cam (SOHC)
    vehicledescriptor: 1HGCM826*3A
    vehicletype: PASSENGER CAR
    wheelbaselong: ''
    wheelbaseshort: ''
    wheelbasetype: ''
    wheels: ''
    wheelsizefront: ''
    wheelsizerear: ''
    windows: ''
  trim: EX-V6
  vin: 1HGCM82633A004352
  year: 2003
code: 200

	
							
	
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "error": {},
    "data": {
      "$ref": "#/definitions/Data"
    },
    "code": {
      "type": "integer"
    }
  },
  "definitions": {
    "Data": {
      "type": "object",
      "properties": {
        "make": {
          "type": "string"
        },
        "manufacturer": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "options": {
          "$ref": "#/definitions/Options"
        },
        "trim": {
          "type": "string"
        },
        "vin": {
          "type": "string"
        },
        "year": {
          "type": "string"
        }
      }
    },
    "Options": {
      "type": "object",
      "properties": {
        "abs": {
          "type": "string"
        },
        "activesafetysysnote": {
          "type": "string"
        },
        "adaptivecruisecontrol": {
          "type": "string"
        },
        "adaptivedrivingbeam": {
          "type": "string"
        },
        "adaptiveheadlights": {
          "type": "string"
        },
        "additionalerrortext": {
          "type": "string"
        },
        "airbagloccurtain": {
          "type": "string"
        },
        "airbaglocfront": {
          "type": "string"
        },
        "airbaglocknee": {
          "type": "string"
        },
        "airbaglocseatcushion": {
          "type": "string"
        },
        "airbaglocside": {
          "type": "string"
        },
        "automaticpedestrianalertingsound": {
          "type": "string"
        },
        "autoreversesystem": {
          "type": "string"
        },
        "axleconfiguration": {
          "type": "string"
        },
        "axles": {
          "type": "string"
        },
        "baseprice": {
          "type": "string"
        },
        "batterya": {
          "type": "string"
        },
        "batterya_to": {
          "type": "string"
        },
        "batterycells": {
          "type": "string"
        },
        "batteryinfo": {
          "type": "string"
        },
        "batterykwh": {
          "type": "string"
        },
        "batterykwh_to": {
          "type": "string"
        },
        "batterymodules": {
          "type": "string"
        },
        "batterypacks": {
          "type": "string"
        },
        "batterytype": {
          "type": "string"
        },
        "batteryv": {
          "type": "string"
        },
        "batteryv_to": {
          "type": "string"
        },
        "bedlengthin": {
          "type": "string"
        },
        "bedtype": {
          "type": "string"
        },
        "blindspotintervention": {
          "type": "string"
        },
        "blindspotmon": {
          "type": "string"
        },
        "bodycabtype": {
          "type": "string"
        },
        "bodyclass": {
          "type": "string"
        },
        "brakesystemdesc": {
          "type": "string"
        },
        "brakesystemtype": {
          "type": "string"
        },
        "busfloorconfigtype": {
          "type": "string"
        },
        "buslength": {
          "type": "string"
        },
        "bustype": {
          "type": "string"
        },
        "can_aacn": {
          "type": "string"
        },
        "cashforclunkers": {
          "type": "string"
        },
        "chargerlevel": {
          "type": "string"
        },
        "chargerpowerkw": {
          "type": "string"
        },
        "cib": {
          "type": "string"
        },
        "coolingtype": {
          "type": "string"
        },
        "curbweightlb": {
          "type": "string"
        },
        "custommotorcycletype": {
          "type": "string"
        },
        "daytimerunninglight": {
          "type": "string"
        },
        "destinationmarket": {
          "type": "string"
        },
        "displacementcc": {
          "type": "string"
        },
        "displacementci": {
          "type": "string"
        },
        "displacementl": {
          "type": "string"
        },
        "doors": {
          "type": "string"
        },
        "driverassist": {
          "type": "string"
        },
        "drivetype": {
          "type": "string"
        },
        "dynamicbrakesupport": {
          "type": "string"
        },
        "edr": {
          "type": "string"
        },
        "electrificationlevel": {
          "type": "string"
        },
        "engineconfiguration": {
          "type": "string"
        },
        "enginecycles": {
          "type": "string"
        },
        "enginecylinders": {
          "type": "string"
        },
        "enginehp": {
          "type": "string"
        },
        "enginehp_to": {
          "type": "string"
        },
        "enginekw": {
          "type": "string"
        },
        "enginemanufacturer": {
          "type": "string"
        },
        "enginemodel": {
          "type": "string"
        },
        "entertainmentsystem": {
          "type": "string"
        },
        "errorcode": {
          "type": "string"
        },
        "errortext": {
          "type": "string"
        },
        "esc": {
          "type": "string"
        },
        "evdriveunit": {
          "type": "string"
        },
        "forwardcollisionwarning": {
          "type": "string"
        },
        "fuelinjectiontype": {
          "type": "string"
        },
        "fueltypeprimary": {
          "type": "string"
        },
        "fueltypesecondary": {
          "type": "string"
        },
        "gcwr": {
          "type": "string"
        },
        "gcwr_to": {
          "type": "string"
        },
        "gvwr": {
          "type": "string"
        },
        "gvwr_to": {
          "type": "string"
        },
        "keylessignition": {
          "type": "string"
        },
        "lanecenteringassistance": {
          "type": "string"
        },
        "lanedeparturewarning": {
          "type": "string"
        },
        "lanekeepsystem": {
          "type": "string"
        },
        "lowerbeamheadlamplightsource": {
          "type": "string"
        },
        "makeid": {
          "type": "string"
        },
        "manufacturerid": {
          "type": "string"
        },
        "modelid": {
          "type": "string"
        },
        "motorcyclechassistype": {
          "type": "string"
        },
        "motorcyclesuspensiontype": {
          "type": "string"
        },
        "ncsabodytype": {
          "type": "string"
        },
        "ncsamake": {
          "type": "string"
        },
        "ncsamapexcapprovedby": {
          "type": "string"
        },
        "ncsamapexcapprovedon": {
          "type": "string"
        },
        "ncsamappingexception": {
          "type": "string"
        },
        "ncsamodel": {
          "type": "string"
        },
        "ncsanote": {
          "type": "string"
        },
        "nonlanduse": {
          "type": "string"
        },
        "note": {
          "type": "string"
        },
        "otherbusinfo": {
          "type": "string"
        },
        "otherengineinfo": {
          "type": "string"
        },
        "othermotorcycleinfo": {
          "type": "string"
        },
        "otherrestraintsysteminfo": {
          "type": "string"
        },
        "othertrailerinfo": {
          "type": "string"
        },
        "parkassist": {
          "type": "string"
        },
        "pedestrianautomaticemergencybraking": {
          "type": "string"
        },
        "plantcity": {
          "type": "string"
        },
        "plantcompanyname": {
          "type": "string"
        },
        "plantcountry": {
          "type": "string"
        },
        "plantstate": {
          "type": "string"
        },
        "possiblevalues": {
          "type": "string"
        },
        "pretensioner": {
          "type": "string"
        },
        "rearautomaticemergencybraking": {
          "type": "string"
        },
        "rearcrosstrafficalert": {
          "type": "string"
        },
        "rearvisibilitysystem": {
          "type": "string"
        },
        "saeautomationlevel": {
          "type": "string"
        },
        "saeautomationlevel_to": {
          "type": "string"
        },
        "seatbeltsall": {
          "type": "string"
        },
        "seatrows": {
          "type": "string"
        },
        "seats": {
          "type": "string"
        },
        "semiautomaticheadlampbeamswitching": {
          "type": "string"
        },
        "series": {
          "type": "string"
        },
        "series2": {
          "type": "string"
        },
        "steeringlocation": {
          "type": "string"
        },
        "suggestedvin": {
          "type": "string"
        },
        "topspeedmph": {
          "type": "string"
        },
        "tpms": {
          "type": "string"
        },
        "trackwidth": {
          "type": "string"
        },
        "tractioncontrol": {
          "type": "string"
        },
        "trailerbodytype": {
          "type": "string"
        },
        "trailerlength": {
          "type": "string"
        },
        "trailertype": {
          "type": "string"
        },
        "transmissionspeeds": {
          "type": "string"
        },
        "transmissionstyle": {
          "type": "string"
        },
        "trim": {
          "type": "string"
        },
        "trim2": {
          "type": "string"
        },
        "turbo": {
          "type": "string"
        },
        "valvetraindesign": {
          "type": "string"
        },
        "vehicledescriptor": {
          "type": "string"
        },
        "vehicletype": {
          "type": "string"
        },
        "wheelbaselong": {
          "type": "string"
        },
        "wheelbaseshort": {
          "type": "string"
        },
        "wheelbasetype": {
          "type": "string"
        },
        "wheels": {
          "type": "string"
        },
        "wheelsizefront": {
          "type": "string"
        },
        "wheelsizerear": {
          "type": "string"
        },
        "windows": {
          "type": "string"
        }
      }
    }
  }
}
	
							
Live Test API in Playground

Swagger Live Test

Client Libraries

To get started with minimal code, most of our APIs are available through client libraries and clients:

run in postman button npm logo pypi logo nuget logo swagger logo

Response Types

The VIN Decoder API supports the following response content types:

application/json, application/xml, application/yaml

You can specify the response content type by setting the Accept header in your request. If you don't specify a content type, the API will default to application/json.

Authentication

The VIN Decoder API uses an API Key to authenticate requests. You can view and manage your API key by visiting your dashboard.

Your API keys carry many privileges. To keep them from being abused, please do not share the keys on client-side code or Github etc. Keep them very secure.

All requests made to the API must contain the header x-api-key in each of your requests. API requests without authentication will fail.

All API requests must also be made over secure HTTPS. Requests made over plain HTTP will fail.

Error Code Meaning
401 Your request was made with invalid credentials. This error also appears when you don't pass the x-api-key header in your request.

Rate Limits

	
{
    "status": "error",
    "data": null,
    "error": "tokens have been depleted",
    "code": 429
}
	
							

Each subscription has its own monthly token limit. Your token count is based on your subscription plan. If you reach your limits, don't worry. You can always upgrade or downgrade at any time. View Pricing

When you reach your limit, the service will stop responding and typically return an HTTP 429 response status code. The error will also contain a detailed JSON.

The VIN Decoder API uses the following error code:

Error Code Meaning
429 You have exceeded your rate limit and further requests will be denied until the next cycle.

Error Codes

For reference, the VIN Decoder API uses the following error codes:

Error Code Meaning
Code Message
200 The request was successful. The response will include the requested data.
400 The request was invalid. The response will include a message that explains the error.
401 The request was not authorized. Usually, this means that the API key is missing or invalid.
403 This means that the request was trying to access a resource that it does not have permission to access.
404 This means that the resource you are trying to access does not exist.
429 This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request.
500 This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible.
ON THIS PAGE