🇨🇴Vehicle accidentality in Bogota

Service to check if a vehicle has been part of an accident in Bogotá using its license plate.

Vehicle accidentality in Bogota

GET - https://api.verifik.co/v2/co/bogota/vehicle/accidentality

This service provides detailed information about the accident history of a vehicle registered in Bogotá, Colombia, using its license plate number. The response includes an array of accidents, with each record detailing the date of the accident, the associated form number, and the severity of the accident. This information is useful for assessing the vehicle's accident history and understanding its past incidents.

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/accidentality>',
  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": {
        "accident": [
            {
                "date": "VIERNES, 20 FEBRERO 2015 00:00",
                "form": "A1689",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "LUNES, 10 FEBRERO 2014 00:00",
                "form": "A1428611",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "SÁBADO, 9 MARZO 2013 00:00",
                "form": "A1247163",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "VIERNES, 15 DICIEMBRE 2017 00:00",
                "form": "A000694418",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "VIERNES, 18 NOVIEMBRE 2016 00:00",
                "form": "A000472658",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "MIÉRCOLES, 25 DICIEMBRE 2013 00:00",
                "form": "A1422549",
                "seriousness": "SOLO DAÑOS"
            },
            {
                "date": "LUNES, 20 MAYO 2013 00:00",
                "form": "A1300406",
                "seriousness": "SOLO DAÑOS"
            }
        ],
        "plate": "TSP331"
    },
    "signature": {
        "dateTime": "July 3, 2024 3:58 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "3C9YY"
}

Last updated