Skip to main content

RUNT - Vehicle owners by plate

Retrieve a Colombian vehicle's basic details and ownership records using only its license plate. This service is useful for ownership verification, onboarding, and vehicle due diligence.

Endpoint

GET https://api.verifik.co/v2/co/runt/propietarios

The response includes plate, brand, line, model, and an owners array with owner identity, ownership period, financing, pledge, and registry details when available. GET /v2/co/runt/vehiculo/owners is a legacy alias of the same handler; new integrations should use propietarios.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescriptionExample
platestringYesColombian license plate containing 5–9 alphanumeric characters.CRL299

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/runt/propietarios", {
params: { plate: "CRL299" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"plate": "CRL299",
"brand": "CHEVROLET",
"line": "CRUZE",
"model": "2012",
"owners": [
{
"documentIssueDate": null,
"documentNumber": "********",
"documentType": "CC",
"entity": "ENTIDAD FINANCIERA",
"financingTime": 42.03,
"financingType": "Prenda",
"firstName": "OWNER",
"fullName": "OWNER EXAMPLE",
"lastName": "EXAMPLE",
"ownerId": 10000001,
"ownershipDuration": {
"days": 23,
"months": 6,
"years": 8
},
"ownershipEndDate": "2020-02-13T05:00:00.000+0000",
"ownershipStartDate": "2011-07-21T05:00:00.000+0000",
"pledge": "Prenda levantada",
"registraduriaStatus": null,
"vehicleRegistryNumber": "15514772"
}
]
},
"signature": {
"dateTime": "September 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "ABCDE"
}

Notes

  • The AppFeature code is colombia_api_runt_owners.
  • Use CRL299 in the sandbox.
  • Owner properties may be null when a value is unavailable; owners may contain multiple historical records.
  • GET /v2/co/runt/vehiculo/owners is a legacy alias of the same endpoint; it does not change the result or the charge.