Description

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.

Parameters

Name Type Required? Description Example
vin String True VIN of the vehicle to consult. 1N6BA06B66N545123

Implementation

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 200 - (Successful 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"
}

Other response

Code Description Response Body
404 Not Found Not Found {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Missing params {
"code": "MissingParameter",
"message": "missing vin\n"
}