🇦🇷 阿根廷 — 车辆 v3
端点
GET https://api.verifik.co/v3/ar/vehicle
使用此端点通过车牌获取阿根廷车辆详情。响应包括标准化的车辆标识符,如发动机号、底盘号、品牌、型号、年份、颜色、车辆类型、有效保单状态及技术参数表字段(如有)。
请求头
| 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/v3/ar/vehicle', {
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/v3/ar/vehicle"
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": {
"brand": "TOYOTA",
"chassis": "AR10000001CH",
"color": "BLANCO",
"engineNumber": "AR10000001M",
"isActivePolicyFound": false,
"model": "COROLLA 2020",
"modelGroup": "COROLLA",
"plate": "AA123BB",
"technicalSheet": {
"engine": {
"engineDescription": "1.6L",
"fuel": "NAFTA",
"powerHp": "110"
},
"performance": {
"cityConsumption": "10 km/L",
"highwayConsumption": "14 km/L"
},
"dimensions": {
"doors": "4",
"occupants": "5"
}
},
"type": "AUTOMOVIL",
"year": "2020"
},
"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 | 标准化车牌。 |
engineNumber | string | null | 数据源返回的发动机号。 |
chassis | string | null | 数据源返回的底盘标识。 |
year | string | null | 车辆年份。 |
brand | string | null | 车辆品牌。 |
modelGroup | string | null | 车型系列。 |
model | string | null | 车型/版本标签。 |
color | string | null | 登记颜色。 |
type | string | null | 车辆类型。 |
isActivePolicyFound | boolean | 是否找到有效保单。 |
technicalSheet | object | null | 技术参数表数据(如有)。 |
说明
- 当无匹配技术数据时,
technicalSheet可能为null或部分填充。 - 服务在查询数据源前会标准化车牌大小写。