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 を使用してください。
  • 利用できない所有者フィールドは null になることがあり、owners には複数の履歴が含まれる場合があります。
  • GET /v2/co/runt/vehiculo/owners は同じエンドポイントのレガシーエイリアスであり、結果も課金も変わりません。