Skip to main content

🇨🇴 콜롬비아 — SIGEP 공무원 검색 (이름)

엔드포인트

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

fullName 쿼리로 SIGEP 디렉터리를 검색합니다. 문서 번호가 있으면 SIGEP (문서번호)를 사용하세요.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
fullNamestringyes검색할 전체 이름.

요청(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/sigep/name", {
params: { fullName: "FRANCIA ELENA MARQUEZ MINA" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

응답(Response)

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"legend": "",
"records": []
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:46 AM"
},
"id": "4ROH0"
}

참고(Notes)

  • fullName 이 없으면 409 가 흔합니다.
  • 200 이어도 records 가 비어 있을 수 있습니다.
  • SIGEP 원천 장애 시 409 Endpoint_out_of_service 가 나올 수 있습니다.