Skip to main content

πŸ‡ΊπŸ‡Έ United States - Vehicle Information

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.

Endpoint​

GET https://api.verifik.co/v2/usa/vehicle

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesLicense plate to be queried, without spaces or dots.ABC123
statestringYesAbbreviation of the state where the vehicle is registered.AL

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/usa/vehicle',
params: {
plate: 'ABC123',
state: 'AL'
},
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <your_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"bodyClass": "Sport Utility Vehicle (SUV)/Multi-Purpose Vehicle (MPV)",
"brakeSystemType": "Hydraulic",
"displacement(CC)": "3500.0",
"displacement(CI)": "213.58310433156",
"displacement(L)": "3.5",
"doors": "4",
"driveType": "FWD/Front-Wheel Drive",
"engineBrake(hp)From": "287",
"engineConfiguration": "V-Shaped",
"engineNumberofCylinders": "6",
"grossVehicleWeightRatingFrom": "Class 1D: 5,001 - 6,000 lb (2,268 - 2,722 kg)",
"make": "FORD",
"manufacturerName": "FORD MOTOR COMPANY OF CANADA, LTD.",
"model": "Flex",
"modelYear": "2016",
"nCSABodyType": "Station Wagon (excluding van and truck based)",
"nCSAModel": "Flex",
"plantCity": "OAKVILLE",
"plantCountry": "CANADA",
"plantState": "ONTARIO",
"plate": "EXPLORE",
"seatBeltType": "Manual",
"state": "AR",
"vehicleType": "MULTIPURPOSE PASSENGER VEHICLE (MPV)",
"vin": "2FMGK5C85GBA14066"
},
"signature": {
"dateTime": "October 10, 2025 7:10 PM",
"message": "Certified by Verifik.co"
},
"id": "KFOFL"
}

Features​

  • Vehicle Information Retrieval: Get comprehensive vehicle details from US vehicle registry
  • License Plate Validation: Verify vehicle license plates registered in US states
  • State-Specific Lookup: Query vehicles by state abbreviation for accurate results
  • Technical Specifications: Get engine configuration, transmission, fuel type, and VIN
  • Vehicle Classification: Access body class and vehicle type information
  • Registration Details: Retrieve registration date, status, and owner information
  • Location Information: Get city and state registration details
  • Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
  • Real-time Data: Access current and up-to-date vehicle information
  • Comprehensive Error Handling: Detailed error responses for various scenarios
  • US Registry Integration: Direct access to official US vehicle databases