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β
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | Plate to consult, without spaces or points. |
Requestβ
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/bogota/vehicle/accidentality"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC123"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate"
}
Notesβ
- Accident severity "SOLO DAΓOS" indicates property damage only (no injuries).
- The
formfield contains the official accident report number for reference. - Dates are provided in Spanish format with day of the week and full date.