Skip to main content

RUNT — 按车牌查询车辆所有人

仅使用车牌查询哥伦比亚车辆的基本信息及其所有权记录。适用于所有权核验、车辆接入和尽职调查。

端点

GET https://api.verifik.co/v2/co/runt/propietarios

响应包括 platebrandlinemodelowners 数组;如有数据,还会返回所有人身份、持有期限、融资、抵押和登记信息。GET /v2/co/runt/vehiculo/owners 是同一处理程序的旧别名;新接入应使用 propietarios

请求头

名称
Acceptapplication/json
AuthorizationBearer <token>

参数

名称类型必填说明示例
platestring由 5–9 个字母或数字组成的哥伦比亚车牌。CRL299

请求

import axios from "axios";

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

响应

{
"data": {
"plate": "CRL299",
"brand": "CHEVROLET",
"line": "CRUZE",
"model": "2012",
"owners": [
{
"documentIssueDate": null,
"documentNumber": "********",
"documentType": "CC",
"entity": "ENTIDAD FINANCIERA",
"financingTime": 42.03,
"financingType": "Prenda",
"firstName": "OWNER",
"fullName": "OWNER EXAMPLE",
"lastName": "EXAMPLE",
"ownerId": 10000001,
"ownershipDuration": { "days": 23, "months": 6, "years": 8 },
"ownershipEndDate": "2020-02-13T05:00:00.000+0000",
"ownershipStartDate": "2011-07-21T05:00:00.000+0000",
"pledge": "Prenda levantada",
"registraduriaStatus": null,
"vehicleRegistryNumber": "15514772"
}
]
},
"signature": {
"dateTime": "September 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "ABCDE"
}

说明

  • AppFeature 代码为 colombia_api_runt_owners
  • 沙盒示例请使用 CRL299
  • 无可用值时,所有人字段可能为 nullowners 可能包含多条历史记录。
  • GET /v2/co/runt/vehiculo/owners 是同一端点的旧别名;结果和计费都不会改变。