RUNT — 按车牌查询车辆所有人
仅使用车牌查询哥伦比亚车辆的基本信息及其所有权记录。适用于所有权核验、车辆接入和尽职调查。
端点
GET https://api.verifik.co/v2/co/runt/propietarios
响应包括 plate、brand、line、model 和 owners 数组;如有数据,还会返回所有人身份、持有期限、融资、抵押和登记信息。GET /v2/co/runt/vehiculo/owners 是同一处理程序的旧别名;新接入应使用 propietarios。
请求头
| 名称 | 值 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| 名称 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
plate | string | 是 | 由 5–9 个字母或数字组成的哥伦比亚车牌。 | CRL299 |
请求
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/runt/propietarios"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
response = requests.get(url, headers=headers, params={"plate": "CRL299"})
print(response.json())
响应
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate"
}
说明
- AppFeature 代码为
colombia_api_runt_owners。 - 沙盒示例请使用
CRL299。 - 无可用值时,所有人字段可能为
null;owners可能包含多条历史记录。 GET /v2/co/runt/vehiculo/owners是同一端点的旧别名;结果和计费都不会改变。