Skip to main content

Taxes in Bogotá

Endpoint

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

This service provides information about the tax obligations for a vehicle registered in Bogotá. You need to provide the owner's document type and number, along with the vehicle's license plate. The response includes vehicle details and tax obligation status for specific fiscal years.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
platestringYesPlate to consult, without spaces or points.
documentNumberstringYesDocument number to consult, without space or points.
documentTypestringYesDocument type. Allowed: CC, NIT.

Request

import axios from "axios";

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

Response

{
"data": {
"details": "",
"documentNumber": "123456789",
"documentType": "CC",
"obligation": {
"vehicle": [
{
"brand": "MAZDA",
"form": "2020003010100010240",
"linea": "050365",
"model": "2021",
"obligation": "1.080.000",
"obligationStatus": "Moroso",
"plate": "ABC123",
"reference": "0000020034588543",
"taxableYear": "2020",
"totalToPay": "1.080.000"
}
]
},
"plate": "ABC123"
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "July 3, 2024 3:59 PM"},
"id": "5P20N"
}

Notes

  • Use CC for Colombian citizenship card or NIT for tax identification number.
  • If obligationStatus is "Moroso", there are outstanding taxes that need to be paid.