This service allows you to retrieve detailed information about a vehicle in the United States using its license plate and state. The response includes various data points such as make, model, model year, engine configuration, body class, transmission style, and more.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
plate | String | True |
License plate to be queried, without spaces or dots. | ABC123 |
state | String | True |
Abbreviation of the state where the vehicle is registered. | AL |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/usa/vehicle>',
params: {plate: 'ABC1234', state: 'FL'},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};
try {
notFou const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
{
"data": {
"bodyClass": "Sport Utility Vehicle (SUV)/Multi-Purpose Vehicle (MPV)",
"brakeSystemType": "Hydraulic",
"displacement(CC)": "3474.057568",
"displacement(CI)": "212",
"displacement(L)": "3.474057568",
"doors": "5",
"engineBrake(hp)From": "260.00",
"engineConfiguration": "V-Shaped",
"engineModel": "J35A5",
"engineNumberofCylinders": "6",
"grossVehicleWeightRatingFrom": "Class 1D: 5,001 - 6,000 lb (2,268 - 2,722 kg)",
"make": "ACURA",
"manufacturerName": "HONDA OF CANADA MFG., INC.",
"model": "MDX",
"modelYear": "2003",
"nCSABodyType": "Large utility (ANSI D16.1 Utility Vehicle Categories and \\"Full Size\\" and \\"Large\\")",
"nCSAModel": "MDX",
"plantCity": "ALLISTON",
"plantCountry": "CANADA",
"plantState": "ONTARIO",
"plate": "KAS976",
"state": "AK",
"transmissionSpeeds": "5",
"transmissionStyle": "Automatic",
"valveTrainDesign": "Single Overhead Cam (SOHC)",
"vehicleDescriptor": "2HNYD182*3H",
"vehicleType": "MULTIPURPOSE PASSENGER VEHICLE (MPV)",
"vin": "2HNYD18233H552413"
},
"signature": {
"dateTime": "April 21, 2023 8:27 PM",
"message": "Certified by Verifik.co"
}
}
Code | Description | Response Body | |
---|---|---|---|
404 |
Not Found | Information not found. | { |
"code": "NotFound", | |||
"message": "Record not found.", | |||
"signature": { | |||
"dateTime": "August 31, 2022 3:24 PM", | |||
"message": "Certified by Verifik.co" | |||
} | |||
} | |||
409 |
Conflict | Some parameters are missing. | { |
"code": "MissingParameter", | |||
"message": "missing plate\n" | |||
} | |||
409 |
Conflict | State acronym is not valid for the query. | { |
"code": "MissingParameter", | |||
"message": "state must be one of: [AL,AK,AS,AZ,AR,CA,CO,CT,DE,DC,FM,FL,GA,GU,HI,ID,IL,IN,IA,KS,KY,LA,ME,MH,MD,MA,MI,MN,MS,MO,MT,NE,NV,NH,NJ,NM,NY,NC,ND,MP,OH,OK,OR,PW,PA,PR,RI,SC,SD,TN,TX,UT,VT,VI,VA,WA,WV,WI,WY]" | |||
} |