Simple function to decode a vehicle VIN using the National Highway Traffic Safety Administration's (NHTSA) API.
Use this function to get details about a vehicle from its VIN.
The data is pulled from the National Highway Traffic Safety Administration’s (NHTSA) API.
include_once 'vin-decoder.php';
include_once
path to the file Call the decodeVIN()
function using one of the following three methods:
decodeVIN('4T1SK12E1NU028452');
$options = array('Make','Model','ModelYear','Trim');
decodeVIN('4T1SK12E1NU028452', ...$options);
$vin = '4T1SK12E1NU028452';
decodeVIN($vin, 'Make','Model','ModelYear','Trim');
For Example #1, the complete array from the NHTSA API is returned with more 130+ attributes.
For Examples #2 and #3, the following array is returned:
Array ( [Error] => 0 [Make] => Toyota [Model] => Camry [ModelYear] => 1992 [Trim] => )
In the event of an invalid VIN being submitted, an array with the keys ['Error']
and [Searched]'
is returned.
['Error']
key holds an array of error messages.['Searched']
key returns the value that was searched so that you may check it for errors. So, when searching for an invalid VIN like 4T1SK12E00U028452
(notice the 9th & 10th digits), the following array is returned:
Array (
[Error] => Array (
[0] => 11 - Incorrect Model Year - Position 10 does not match valid model year codes (I, O, Q, U, Z, 0). Decoded data may not be accurate.
[1] => 400 - Invalid Characters Present
)
[Searched] => VIN(s): 4T1SK12E00U028452
)
This project uses the following license: MIT.