Skip to main content

RUNT — 번호판별 차량 소유자

번호판만으로 콜롬비아 차량의 기본 정보와 소유권 기록을 조회합니다. 소유권 확인, 차량 등록 절차 및 차량 실사에 사용할 수 있습니다.

엔드포인트

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

응답에는 plate, brand, line, modelowners 배열이 포함됩니다. 소유자별 신원, 소유 기간, 금융, 담보 및 등록 정보가 있는 경우 함께 반환됩니다. GET /v2/co/runt/vehiculo/owners는 같은 핸들러의 레거시 별칭이며, 새 연동은 propietarios를 사용해야 합니다.

헤더

이름
Acceptapplication/json
AuthorizationBearer <token>

매개변수

이름형식필수설명예시
platestring5~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**는 같은 엔드포인트의 레거시 별칭이며 결과나 과금은 바뀌지 않습니다.