🇨🇴 보고타 — 차량 과태료 조회
엔드포인트
GET https://api.verifik.co/v2/co/bogota/vehicle/fines
콜롬비아 보고타에 등록된 차량의 번호판(plate)으로 과태료·통고를 조회합니다. 응답에는 유형, 상태, 번호, 날짜, 납부 관련 정보가 포함됩니다.
헤더(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
매개변수(Parameters)
| name | type | required | description |
|---|---|---|---|
plate | string | yes | 조회할 번호판. 공백·마침표 없이 입력합니다. |
요청(Request)
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/bogota/vehicle/fines", {
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/fines"
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": {
"fines": [
{
"type": "Comparendo - comparendera",
"status": "vigente",
"number": "11001000000035429360",
"plate": "ABC123",
"impositionDate": "14/11/2022",
"notificationDate": "14/11/2022",
"balance": "468500",
"discountValue": "0",
"pendingBalance": "549500",
"interest": "81000",
"total": "549500",
"totalCollections": "0",
"impositionMedium": "Control en vía apoyado en dispositivos móviles",
"courseAttendanceMessage": null,
"installmentNumber": "0",
"installmentStatus": null,
"installmentCount": "0",
"documentType": "C",
"documentNumber": "123456789",
"name": "MATEO VERIFIK",
"moratoryInterest": "0"
}
],
"plate": "ABC123"
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "July 3, 2024 4:03 PM"},
"id": "Y5GS6"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate"
}
참고(Notes)
- vigente 상태는 과태료가 유효하며 납부가 필요함을 나타냅니다.
total에는 원금 외 누적 이자가 포함될 수 있습니다.- 납부·이의 신청 시 특정 과태료는
number로 지칭합니다.