VIN Decoder API Documentation
# Use this endpoint to make a GET requests to the API
https://api.apiverve.com/v1/vindecoder
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 an account on apiverve.com and visiting your dashboard.
Important: Ensure that this API is enabled from within your dashboard to use it in your application. If not, you may receive a 403
error
{
"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
}
Decode VIN
Token Usage: 3
Decode a vehicle identification number to get vehicle information
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
vin | string | (Required) The vehicle identification number to decode |
SAMPLE REQUEST QUERY
curl --request GET \
--url 'https://api.apiverve.com/v1/vindecoder?vin=1HGCM82633A004352' \
--header 'x-api-key: YOUR_API_KEY'
RESPONSE CONTENT 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
# Here is a curl example
curl \
-X GET https://api.apiverve.com/v1/vindecoder \
-H 'x-api-key={{YOUR-API-KEY}}' \
-F 'auth=true' \
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.
To use any API, you must have it enabled from within your dashboard. Disabled APIs will fail to respond to your requests.
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.
|
403 | Typically, this occurs when you are trying to access an API that you have not enabled. |
Rate Limits
{
"status": "error",
"data": null,
"error": "Rate limit exceeded. Please upgrade your subscription plan."
}
Each subscription has its own rate limit. Your limit is based on your subscription plan (free or paid). If you exceed your limits, don't worry. You can always upgrade or downgrade at any time.
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 details 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. |
Errors
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. |