Skip to main content

布宜诺斯艾利斯 — 交通违章

端点

GET https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions

使用此端点检查车牌在布宜诺斯艾利斯是否有交通违章。响应包括车牌、记录总数、案件与文书编号、状态、金额、签发机构、日期及违章详情(如有记录)。

请求头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

参数

名称类型必填说明
platestringYesMercosur 格式 AA-123-BB(以 AA123BB 发送,不含空格或标点)。

请求

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);

响应

{
"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"
}
}

响应字段

字段类型说明
platestring标准化车牌。
totalRecordsstring数据源返回的记录数。
infractionsobject[]与车牌关联的交通违章记录。
infractions[].caseNumberstring | null案件编号。
infractions[].actNumberstring | null文书编号。
infractions[].statusstring | null案件公开状态。
infractions[].isExpiredboolean | null记录是否过期。
infractions[].totalAmountstring | null数据源返回的总金额。
infractions[].detailsobject[]违章条款与描述。

说明

  • 此端点仅涵盖布宜诺斯艾利斯交通违章记录。
  • 车牌无返回违章时,infractions 可能为空数组。