πΊπΈ 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β
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | License plate to be queried, without spaces or dots. | ABC123 |
state | string | Yes | Abbreviation of the state where the vehicle is registered. | AL |
Requestβ
- JavaScript
- Python
- PHP
- Swift
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);
}
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {}
conn.request("GET", "/v2/usa/vehicle?plate=ABC123&state=AL", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.verifik.co/v2/usa/vehicle?plate=ABC123&state=AL');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig(array(
'follow_redirects' => TRUE
));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
?>
var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/usa/vehicle?plate=ABC123&state=AL")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
return
}
print(String(data: data, encoding: .utf8)!)
}
task.resume()
Responseβ
- 200
- 404
- 409
- 500
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate or state\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
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