Skip to main content

⚠️ This page has been moved

This URL belonged to the old GitBook documentation and is now in a new location.

New URL: /vehicle-validation/colombia/vehicle-validation-colombia-runt-vehicle-by-plate

You will be automatically redirected in 60 seconds...

Go to New Documentation

Complete Vehicle with Historical Records by Plate and Identification Document RUNT

Endpoint

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

The Vehicle Information service allows you to retrieve detailed data about a vehicle in Colombia by providing its license plate and the document number of its owner. This service provides comprehensive information including the vehicle's make, model, color, technical specifications, insurance history (SOAT and liability policies), technical inspections, and complete historical records of all transactions and requests.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
documentTypestringYesDocument type. Allowed values: CC, CE, PA, RC, NIT.
documentNumberstringYesDocument number of the owner of the vehicle, without spaces or periods.
platestringYesVehicle plate to consult.

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehicle-by-plate", {
  params: { 
    documentType: "CC", 
    documentNumber: "123456789", 
    plate: "ABC123" 
  },
  headers: { 
    Accept: "application/json", 
    Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` 
  },
});
console.log(data);

Notes

  • RUNT provides comprehensive vehicle information including technical specifications and legal status.
  • This service includes complete historical records of all vehicle transactions and requests.
  • SOAT (Seguro Obligatorio de Accidentes de Tránsito) is mandatory accident insurance in Colombia.
  • Vehicle status "ACTIVO" means the vehicle is currently registered and operational.

For complete and updated documentation, visit: /vehicle-validation/colombia/vehicle-validation-colombia-runt-vehicle-by-plate