Skip to main content

波哥大 — 车辆税费

Endpoint

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

查询波哥大登记车辆的税务义务信息。须通过 查询参数 提供车主的 documentTypedocumentNumber 以及车辆 plate。响应包含车辆详情及各财政年度的义务状态。

请求头(Headers)

名称取值
Acceptapplication/json
AuthorizationBearer <token>

参数(Parameters)

名称类型必填描述
platestring待查询车牌,5–6 位,不含空格或圆点。
documentNumberstring证件号码,不含空格或圆点。
documentTypestring证件类型。允许:CCNIT

请求(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"
}

说明

  • CC 表示哥伦比亚公民身份证;NIT 表示税务识别号(个人或法人)。
  • obligationStatusMoroso 时表示尚有未缴税款。