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...
https://api.verifik.co/v2/co/runt/vehicle-by-plateThe 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.
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Document type. Allowed values: CC, CE, PA, RC, NIT. |
documentNumber | string | Yes | Document number of the owner of the vehicle, without spaces or periods. |
plate | string | Yes | Vehicle plate to consult. |
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);import os, requests
url = "https://api.verifik.co/v2/co/runt/vehicle-by-plate"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789", "plate": "ABC123"}
r = requests.get(url, headers=headers, params=params)
print(r.json())For complete and updated documentation, visit: /vehicle-validation/colombia/vehicle-validation-colombia-runt-vehicle-by-plate