Skip to main content

🇨🇴 RUNT — 운전면허증

엔드포인트

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

RUNT 에 등록된 운전면허 정보를 명의자 documentType·documentNumber 로 조회합니다. 면허 상태, 카테고리, 적성·의무 교육 관련 데이터, 제재·과태료 요약 등이 응답에 포함될 수 있습니다.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
documentTypestringyes문서 유형. API 허용: CC, CE, PA, PPT.
documentNumberstringyes운전자 문서 번호(공백·마침표 없음).

요청(Request)

import axios from "axios";

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

응답(Response)

{
"data": {
"documentType": "CC",
"documentNumber": "63535709",
"fullName": "ARLETH PATRICIA RUEDA CORREA",
"driverStatus": "ACTIVO",
"citizenStatus": "ACTIVA",
"licenses": [
{
"category": "B1",
"status": "ACTIVA",
"dueDate": "19/09/2034",
"expeditionDate": "19/09/2024"
}
],
"infractions": {
"tieneMultas": "NO"
}
},
"signature": {
"dateTime": "October 10, 2025 7:29 PM",
"message": "Certified by Verifik.co"
},
"id": "3R2V0"
}

참고(Notes)

  • 응답 필드는 RUNT 원천 데이터에 따라 달라질 수 있습니다.
  • 제품 UI에 다른 문서 유형이 보일 수 있으나, 이 경로의 검증은 CC, CE, PA, PPT 입니다.