Skip to main content

🇨🇴 RUNT — 차량(번호판+신분증)

엔드포인트

GET https://api.verifik.co/v2/co/runt/vehicle-by-plate

소유자 documentType·documentNumberplate쿼리로 보내 RUNT전체 이력·기술 보고서를 조회합니다(SOAT, RC, 검사·등록 신청 등, 제공 시).

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
documentTypestringyes소유자 신분증 유형. CC, CE, PA, NIT 중 하나.
documentNumberstringyes소유자 문서 번호(공백·마침표 없음).
platestringyes조회할 번호판(보통 5–9자).

요청(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehicle-by-plate", {
params: {
documentType: "CC",
documentNumber: "123456789",
plate: "ABC123",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

응답(Response)

{
"data": {
"informacionGeneral": {
"noLicenciaTransito": "10021312347",
"estadoDelVehiculo": "ACTIVO",
"tipoServicio": "Particular",
"claseVehiculo": "CAMIONETA",
"marca": "MAZDA",
"linea": "CX-30",
"modelo": "2021",
"color": "MACHINE GRAY",
"noMotor": "PY402912330",
"noChasis": "3MVDM2WLAML234946",
"noVin": "3MVDM2WLAML234946",
"cilidraje": "2488",
"tipoCarroceria": "WAGON",
"fechaMatricula": "17/10/2020",
"tieneGravamenes": "NO",
"organismoTransito": "SECRETARIA DISTRITAL DE MOVILIDAD DE BOGOTA",
"prendas": "NO",
"clasificacion": "AUTOMOVIL",
"tipoCombustible": "GASOLINA",
"noPlaca": "ABC123",
"puertas": "5"
},
"datosTecnicos": {
"pesoBrutoVehicular": "1939",
"noEjes": "2",
"pasajerosSentados": "5"
},
"soat": [
{
"noPoliza": "355100023467200",
"fechaExpedicion": "03/10/2023",
"fechaVigencia": "17/10/2023",
"fechaVencimiento": "16/10/2024",
"entidadExpideSoat": "SEGUROS COMERCIALES BOLIVAR S.A",
"estado": "VIGENTE",
"tipoTarifa": "221"
}
],
"polizasResponsabilidadCivil": [],
"tecnoMecanica": [
{
"vigente": "NO APLICA"
}
],
"solicitudes": [
{
"noSolicitud": "124539870",
"fechaSolicitud": "17/10/2020",
"estado": "AUTORIZADA",
"tramitesRealizados": "Tramite matricula inicial",
"entidad": "SECRETARIA DISTRITAL DE MOVILIDAD DE BOGOTA"
}
]
},
"signature": { "message": "Certified by Verifik.co", "dateTime": "March 14, 2024 2:23 PM" },
"id": "DWTV2"
}

참고(Notes)

  • RUNT는 기술 사양·법적 상태를 포함한 넓은 범위의 정보를 반환합니다.
  • SOAT 는 콜롬비아 의무 교통사고 보험입니다.
  • VIGENTE 는 보험이 유효한 경우의 예시입니다.
  • ACTIVO 는 등록이 유효한 상태의 예시입니다.