🇨🇴Vehicle Fines Check in Bogotá, Colombia

Service to consult fines made to a vehicle in the city of Bogotá.

Vehicle Fines Check in Bogotá, Colombia

GET - 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 the type of fine, status, fine number, date of imposition, date of notification, pending balance, interest, and other relevant details.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

plate

String

True

Plate to consult, without spaces or points.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/bogota/vehicle/fines>',
  params: {plate: 'ABC123'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

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": {
        "dateTime": "July 3, 2024 4:03 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "Y5GS6"
}

Last updated