Skip to main content

Vehicle Accidentality

Endpoint​

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. The response includes an array of accidents with dates, form numbers, and severity levels.

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/accidentality", {
params: { plate: "ABC123" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`
},
});
console.log(data);

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"
}
],
"plate": "TSP331"
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "July 3, 2024 3:58 PM"},
"id": "3C9YY"
}

Notes​

  • Accident severity "SOLO DAΓ‘OS" indicates property damage only (no injuries).
  • The form field contains the official accident report number for reference.
  • Dates are provided in Spanish format with day of the week and full date.