🇪🇨Vehicle Information Lookup

Service to query Ecuadorian vehicles using their license plate.

Vehicle Information Lookup

GET - https://api.verifik.co/v2/ec/vehiculo/placa

With the Vehicle Information Lookup service for Ecuadorian license plates, you can easily retrieve valuable information about a vehicle by entering its license plate number. Obtain details such as the vehicle's make, model, year of manufacture, and date of last registration. You can also check the expiration date of its registration, its service status, and any restrictions on its sale. Additionally, the service provides information on the vehicle's cylinders, color, and brand.

This service is ideal for anyone looking to buy or sell a used car in Ecuador, or for businesses needing to verify vehicle information for their operations.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

Plate number to consult, without spaces or points.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ec/vehiculo/placa>',
  params: {plate: 'ABC1234'},
  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": {
    "placa": "ABC1234",
    "camvCpn": "B0123456",
    "color1": "-",
    "color2": "-",
    "cylinders": 1600,
    "class": "AUTOMOVIL",
    "brand": "CHEVROLET",
    "model": "AVEO ACTIVO 1.6L 4P AC",
    "year": 2011,
    "country": "ECUADOR",
    "dateLastMatricula": "10/11/2022",
    "dateExpirationMatricula": "31/10/2026",
    "purchaseDate": "28/10/2010",
    "revisionDate": "30/11/2021",
    "canton": "LA LIBERTAD",
    "service": "ALQUILER",
    "lastYearPaid": 2021,
    "prohibidoEnajenar": "-",
    "exonerationStatus": "-",
    "observation": "string"
  },
  "signature": {
    "dateTime": "August 24, 2022 10:35 AM",
    "message": "Certified by Verifik.co"
  }
}

Last updated