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.

Parameters

Name Type ¿Required? Description Example
plate String True Plate number to consult, without spaces or points. ABC123

Implementation

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

Other responses

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