🇺🇸Información del Vehículo

Servicio para consultar vehículos de Estados Unidos utilizando su número de placa y el estado al que pertenecen.

Información de Vehículos de Estados Unidos

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

Este servicio permite obtener información detallada sobre un vehículo en Estados Unidos utilizando su número de placa y el estado de registro. La respuesta incluye diversos datos como marca, modelo, año del modelo, configuración del motor, tipo de carrocería, estilo de transmisión y más.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

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