Skip to main content

🇨🇴 콜롬비아 — SIGEP 공문서 조회 (by document)

엔드포인트

GET https://api.verifik.co/v2/co/sigep/number

documentTypedocumentNumber 로 SIGEP 디렉터리를 조회합니다. 이름만으로 검색하려면 SIGEP (이름) 을 사용하세요.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
documentTypestringyesCC 또는 NIT (API 검증).
documentNumberstringyes공백·구두점 없이.

요청(Request)

import axios from "axios";

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

응답(Response)

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"documentType": "CC",
"documentNumber": "34503110",
"records": [],
"legend": ""
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:49 AM"
},
"id": "VMH0I"
}

참고(Notes)

  • documentTypeCC / NIT 만 허용됩니다(UI에 다른 값이 보일 수 있음).
  • 디렉터리에 없으면 200에 빈 recordslegend 가 올 수 있습니다.