Skip to main content

Vehicle Fines Check

Endpoint​

https://api.verifik.co/v2/co/bogota/vehicle/fines

This service allows you to check fines associated with a vehicle in BogotΓ‘, Colombia, using its license plate number. The response provides detailed information including fine type, status, number, dates, and payment details.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
platestringYesPlate to consult, without spaces or points.

Request​

import axios from "axios";

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

Response​

{
"data": {
"fines": [
{
"type": "Comparendo - comparendera",
"status": "vigente",
"number": "11001000000035429360",
"plate": "ABC123",
"impositionDate": "14/11/2022",
"notificationDate": "14/11/2022",
"balance": "468500",
"discountValue": "0",
"pendingBalance": "549500",
"interest": "81000",
"total": "549500",
"totalCollections": "0",
"impositionMedium": "Control en vΓ­a apoyado en dispositivos mΓ³viles",
"courseAttendanceMessage": null,
"installmentNumber": "0",
"installmentStatus": null,
"installmentCount": "0",
"documentType": "C",
"documentNumber": "123456789",
"name": "MATEO VERIFIK",
"moratoryInterest": "0"
}
],
"plate": "ABC123"
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "July 3, 2024 4:03 PM"},
"id": "Y5GS6"
}

Notes​

  • Fine status "vigente" indicates the fine is currently active and requires payment.
  • The total field includes the original fine amount plus any accumulated interest.
  • Use the number field to reference specific fines for payment or appeals.