VIN Lookup API
The VIN Lookup API provides vehicle information by decoding any Vehicle Identification Number (VIN).
/v1/vinlookup GET
https://api.api-ninjas.com/v1/vinlookup
Returns key vehicle information including manufacturer, country of origin, and model year for a given VIN.
Parameters
- vinrequired- Valid VIN to check. Must be a 17-character string. 
Headers
- X-Api-Keyrequired- API Key associated with your account. 
Returns
- makepremium- Vehicle manufacturer. 
- modelpremium- Vehicle model. 
- country- Country in which the vehicle was manufactured. 
- region- Geographic region of the manufactured country (e.g. - Asia).
- classpremium- Vehicle body class (e.g. - coupe).
- wmi- Vehicle WMI identifier. 
- vds- Vehicle VDS identifier. 
- vis- Vehicle VIS identifier. 
- year- Year in which the vehicle was manufactured. 
Sample Request Live Demo!
https://api.api-ninjas.com/v1/vinlookup?vin=JH4KA7561PC008269Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
11
12
{
  "vin": "JH4KA7561PC008269",
  "country": "Japan",
  "manufacturer": "Acura",
  "model": "Legend",
  "class": "Sedan/Saloon",
  "region": "Asia",
  "wmi": "JH4",
  "vds": "KA7561",
  "vis": "PC008269",
  "year": "1993"
}Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/vinlookup?vin=JH4KA7561PC008269" \
  -H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.