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
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | Plate to consult, without spaces or points. |
documentNumber | string | Yes | Document number to consult, without space or points. |
documentType | string | Yes | Document type. Allowed: CC, NIT. |
Request
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/bogota/vehicle/tax"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC123", "documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Response
- 200
- 400
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate"
}
Notes
- Use
CCfor Colombian citizenship card orNITfor tax identification number. - If
obligationStatusis "Moroso", there are outstanding taxes that need to be paid.