🇨🇴Vehicle plate and identification card only

Service to query vehicles using owner's data and vehicle's license plate.

Vehicle plate and identification card only

GET - https://api.verifik.co/v2/co/runt/vehicle-by-plate-simplified

The Vehicle Information Lookup API allows you to retrieve comprehensive details about a vehicle registered in Colombia using its license plate. By providing the license plate number along with the document type and number of the owner, you can access essential information about the vehicle, including its make, model, year, color, fuel type, and more.

This API provides a valuable resource for businesses and individuals looking to access accurate and up-to-date vehicle information in Colombia.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed values are: CC, CE, PA, RC, NIT.

CC

documentNumber

String

True

Document number of the owner of the vehicle, without spaces or periods

123456789

plate

String

True

Vehicle plate to consult.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/runt/vehicle-by-plate-simplified>',
  params: {documentType: 'CC', documentNumber: '123456789', plate: 'ABC123'}, 
   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": {
        "vehicle": {
            "claseVehiculo": "AUTOMOVIL",
            "color": "ROJO COBRE",
            "estadoDelVehiculo": "ACTIVO",
            "homologaciones": [],
            "linea": "3 ALL NEW",
            "marca": "MAZDA",
            "modelo": "2014",
            "noChasis": "9FCBL86L2E1123424",
            "noMotor": "LF11517487",
            "noPlaca": "HSY802",
            "noVin": "9FCBL86L2E11022344",
            "organismoTransito": "SDM - BOGOTA D.C.",
            "tipoCarroceria": "SEDAN",
            "tipoCombustible": "GASOLINA",
            "tipoServicio": "Particular",
            "toneladas": "0.00"
        },
        "plate": "ABC123",
        "documentNumber": "123456789",
        "documentType": "CC"
    },
    "signature": {
        "dateTime": "March 14, 2024 2:11 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "9S7J6"
}

Last updated