Skip to main content

🇨🇱 智利 — 被盗车辆

查询智利车辆是否有有效的被盗或盗窃报案encargo por robo o hurto)。

查询成功时返回签名载荷:

  • plate — 智利号牌(Patente),4–7 位字母数字
  • hasTheftReport — 有有效报案时为 true,否则为 false
  • description — 状态文本(例如 NO REGISTRA ENCARGO Vigentes
  • theftReport — 报案对象:typeCodeplateOriginalplateFormattedreportDatepartiallyResolveditems
  • items[] — 被盗部件:namedescriptionserialresolvedDatedelivereddeliveryDatetype
  • Verifik 签名响应

用于智利车辆登记或融资前的保险核保车队接入尽职调查

端点

GET v2/cl/vehicle-stolen

典型字段:platehasTheftReportdescription 以及嵌套 theftReport。无有效报案仍返回 HTTP 200

标头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

参数

NameTypeRequiredDescriptionExample
platestringYes智利号牌(Patente),4–7 位字母数字。PTKX93

请求

const { data } = await axios.get("https://api.verifik.co/v2/cl/vehicle-stolen", {
params: { plate: "PTKX93" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

响应

{
"data": {
"description": "NO REGISTRA ENCARGO Vigentes",
"hasTheftReport": false,
"plate": "PTKX93",
"theftReport": {
"typeCode": 0,
"plateOriginal": "PTKX93",
"plateFormatted": null,
"reportDate": "",
"partiallyResolved": false,
"items": []
}
},
"signature": {
"dateTime": "September 3, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}

备注

  • 无有效被盗报案返回 HTTP 200hasTheftReport: false — 不是 404。
  • 沙箱模式: 号牌 PTKX93 返回无报案档案;NG8245 返回被盗报案档案。
  • 无效号牌格式返回 409 invalid_plate_format
  • 登记系统可用性取决于环境;中断可能返回 409 超时。