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は同じエンドポイントのレガシーエイリアスであり、結果も課金も変わりません。