布宜诺斯艾利斯 — 交通违章
端点
GET https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions
使用此端点检查车牌在布宜诺斯艾利斯是否有交通违章。响应包括车牌、记录总数、案件与文书编号、状态、金额、签发机构、日期及违章详情(如有记录)。
请求头
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| 名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
plate | string | Yes | Mercosur 格式 AA-123-BB(以 AA123BB 发送,不含空格或标点)。 |
请求
- JavaScript
- Python
import axios from 'axios';
const { data } = await axios.get('https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions', {
params: { plate: 'AA123BB' },
headers: {
Accept: 'application/json',
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os
import requests
url = "https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "AA123BB"}
response = requests.get(url, headers=headers, params=params)
print(response.json())
响应
- 200
- 404
- 409
- 500
{
"data": {
"plate": "AA123BB",
"totalRecords": "1",
"infractions": [
{
"caseNumber": "BA-10000001",
"actNumber": "ACT-10000001",
"status": "Pendiente",
"isExpired": false,
"totalAmount": "10012501",
"details": [
{
"article": "Ley 24.449",
"description": "Exceso de velocidad"
}
],
"issuingAuthority": "Buenos Aires",
"infractionDate": "2026-01-15T12:00:00.000Z",
"issueDate": "2026-01-16T12:00:00.000Z",
"dueDate": "2026-02-15T12:00:00.000Z"
}
]
},
"signature": {
"dateTime": "July 1, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
plate | string | 标准化车牌。 |
totalRecords | string | 数据源返回的记录数。 |
infractions | object[] | 与车牌关联的交通违章记录。 |
infractions[].caseNumber | string | null | 案件编号。 |
infractions[].actNumber | string | null | 文书编号。 |
infractions[].status | string | null | 案件公开状态。 |
infractions[].isExpired | boolean | null | 记录是否过期。 |
infractions[].totalAmount | string | null | 数据源返回的总金额。 |
infractions[].details | object[] | 违章条款与描述。 |
说明
- 此端点仅涵盖布宜诺斯艾利斯交通违章记录。
- 车牌无返回违章时,
infractions可能为空数组。