🇺🇸Vehicle Information by VIN

Service to consult US vehicles using the VIN number.

United States Vehicle Information by VIN

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

This service provides comprehensive information about a vehicle registered in the United States using its Vehicle Identification Number (VIN). By querying the VIN, you can retrieve detailed data including the vehicle's body class, engine displacement, engine configuration, manufacturer, model, model year, and the plant where it was manufactured, among other details. This service is ideal for verifying vehicle specifications and history based on its VIN.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

vin

String

True

VIN of the vehicle to consult.

1N6BA06B66N545123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/usa/vehicle-by-vin>',
  params: {vin: '1N6BA06B66N545123'},
  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": "Pickup",
        "cabType": "Extra/Super/Quad/Double/King/Extended",
        "displacement(CC)": "5600.0",
        "displacement(CI)": "341.73296693050",
        "displacement(L)": "5.6",
        "driveType": "4WD/4-Wheel Drive/4x4",
        "grossVehicleWeightRatingFrom": "Class 2E: 6,001 - 7,000 lb (2,722 - 3,175 kg)",
        "make": "NISSAN",
        "manufacturerName": "NISSAN NORTH AMERICA, INC.",
        "model": "Titan",
        "modelYear": "2006",
        "nCSABodyType": "Light Pickup",
        "nCSAModel": "Titan (from 2004-06; see 481 for 2007 on)",
        "plantCity": "CANTON",
        "plantCountry": "UNITED STATES (USA)",
        "plantState": "MISSISSIPPI",
        "vehicleType": "TRUCK",
        "vin": "1N6BA06B66N545157"
    },
    "signature": {
        "dateTime": "June 24, 2024 7:44 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "71NHZ"
}

Last updated