🇦🇷 阿根廷 — RTO
端点
GET https://api.verifik.co/v2/ar/rto
使用此端点通过车牌查询阿根廷 RTO 检验记录。响应包括检验结果、检验类型、检验与到期日期、证书、扩展类别、检验中心及警报类型。
请求头
| 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/rto', {
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/rto"
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": [
{
"plate": "AA123BB",
"result": "CONDICIONAL",
"inspectionType": "RTO",
"inspectionDate": "2026-01-15",
"expirationDate": "2027-01-15",
"certificate": "RTO-10000001",
"scalabilityCategory": "L",
"inspectionCenter": "CENT UTN",
"alertType": "danger"
}
]
},
"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 | 返回的 RTO 记录数。 |
inspections | object[] | RTO 检验记录。 |
inspections[].result | string | null | 检验结果。 |
inspections[].inspectionType | string | null | 检验类型标签。 |
inspections[].inspectionDate | string | null | 检验日期。 |
inspections[].expirationDate | string | null | 到期日期。 |
inspections[].certificate | string | null | 证书标识。 |
inspections[].scalabilityCategory | string | null | 数据源返回的扩展类别。 |
inspections[].inspectionCenter | string | null | 检验中心名称。 |
inspections[].alertType | string | null | 数据源警报类型(如有)。 |
说明
- 当数据源返回可识别的日/月/年值时,日期字段会被标准化。
- RTO 记录以
inspections数组返回,以便处理同一车牌的多条记录。