Holiday Sale! Get over 30% off when you subscribe to an annual plan!

VIN Lookup API

The VIN Lookup API provides vehicle information by decoding any Vehicle Identification Number (VIN).

(4.1)

From 6,710 users

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
319ms345ms374ms626ms1100ms

Didn't find what you were looking for? Suggest an improvement


/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

  • vin  required

    Valid VIN to check. Must be a 17-character string.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Returns

  • make  premium

    Vehicle manufacturer.

  • model  premium

    Vehicle model.

  • country  

    Country in which the vehicle was manufactured.

  • region  

    Geographic region of the manufactured country (e.g. Asia).

  • class  premium

    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!

vin

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/vinlookup?vin=JH4KA7561PC008269

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
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.