🇨🇴 麦德林 - 交通罚款
端点
https://api.verifik.co/v2/co/medellin/vehicle/fines
本服务返回 哥伦比亚麦德林 车牌的本地交通罚款和传票,包括违规记录、金额和违法者信息(如有)。适用于市政合规、车队管理和限于麦德林出行记录的车辆尽职调查。
常见字段:plate、informacionComparendo、valorTotalAdeudado 及相关数组。
请求头
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | 车牌号(5–8 位),不含空格或点。 |
请求
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/medellin/vehicle/fines", {
params: { plate: "ABC10001" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/medellin/vehicle/fines"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC10001"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应
- 200
- 404
- 409
{
"data": {
"plate": "ABC10001",
"informacionComparendo": [
{
"numeroComparendo": "MDL202400000001",
"placa": "ABC10001",
"fecha": "15/01/2024",
"valor": 180000,
"estado": "Pendiente",
"codigoInfraccion": "C29",
"descripcionInfraccion": "Transitar en sitios prohibidos."
}
],
"valorTotalAdeudado": 180000,
"valorTotalPago": 0
},
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "\"plate\" is required"
}
说明
- Sandbox: 车牌
ABC10001–ABC10010返回固定示例;ERR404→ 404。 - 仅覆盖麦德林;全国 SIMIT 数据见 SIMIT - 罚款。
- 市政门户可用性可能变化;故障可能返回 5xx 错误。