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

Vehicle Records by Plate Number

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. You can access information including the vehicle's make, model, color, technical specifications, insurance history (SOAT and liability policies), and technical inspections.

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);

Response

The response includes comprehensive vehicle information including technical specifications, general information, vehicle status, liability policies, SOAT insurance, requests, operation card, and technical inspections.

Notes

  • RUNT provides comprehensive vehicle information including technical specifications and legal status.
  • SOAT (Seguro Obligatorio de Accidentes de Tránsito) is mandatory accident insurance in Colombia.
  • "VIGENTE" status indicates active/current insurance policies.
  • 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