VIN Lookup API
The VIN Lookup API provides vehicle information by decoding any Vehicle Identification Number (VIN).
Checking API status...
/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
vinrequiredValid VIN to check. Must be a 17-character string.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Returns
makepremiumVehicle manufacturer.
modelpremiumVehicle model.
countryCountry in which the vehicle was manufactured.
regionGeographic region of the manufactured country (e.g.
Asia).classpremiumVehicle body class (e.g.
coupe).wmiVehicle WMI identifier.
vdsVehicle VDS identifier.
visVehicle VIS identifier.
yearYear 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.