布宜诺斯艾利斯 — 技术检验
端点
GET https://api.verifik.co/v2/ar/buenos-aires/technical-inspection
使用此端点通过车牌查询布宜诺斯艾利斯车辆技术检验历史。响应返回检验记录,包括验证标识、检验与到期日期、结果类型、检验贴纸编号、备注、车辆品牌型号及检验站名称。
请求头
| 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/technical-inspection', {
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/technical-inspection"
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",
"inspections": [
{
"verificationId": "10000001",
"verificationDate": "2026-01-15 10:30:00",
"resultTypeId": "2",
"comments": "Observada",
"stickerNumber": "OB-10000001",
"expirationDate": "2027-01-15",
"isReverification": false,
"brand": "TOYOTA",
"model": "COROLLA",
"plantName": "Planta VTV Buenos Aires"
}
]
},
"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 | 返回的技术检验记录数。 |
inspections | object[] | 技术检验记录。 |
inspections[].verificationId | string | null | 验证标识。 |
inspections[].verificationDate | string | null | 检验验证日期。 |
inspections[].resultTypeId | string | null | 数据源返回的结果类型标识。 |
inspections[].stickerNumber | string | null | 检验贴纸编号。 |
inspections[].expirationDate | string | null | 检验到期日期。 |
inspections[].brand | string | null | 车辆品牌。 |
inspections[].model | string | null | 车辆型号。 |
inspections[].plantName | string | null | 检验站名称。 |
说明
- 此端点仅涵盖布宜诺斯艾利斯技术检验记录。
- 当数据源返回可识别的日/月/年值时,日期字段会被标准化。