🇺🇸Vehicle Information

Service to query US vehicles using their license plate and the state they belong to.

United States Vehicle Information

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

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.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

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

Request

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);
}

Response

{
  "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"
  }
}

Last updated