🇨🇴 콜롬비아 — SIGEP 공문서 조회 (by document)
엔드포인트
GET https://api.verifik.co/v2/co/sigep/number
documentType 과 documentNumber 로 SIGEP 디렉터리를 조회합니다. 이름만으로 검색하려면 SIGEP (이름) 을 사용하세요.
헤더(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
매개변수(Parameters)
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | CC 또는 NIT (API 검증). |
documentNumber | string | yes | 공백·구두점 없이. |
요청(Request)
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/sigep/number"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "34503110"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
응답(Response)
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [CC,NIT]"
}
참고(Notes)
documentType은CC/NIT만 허용됩니다(UI에 다른 값이 보일 수 있음).- 디렉터리에 없으면 200에 빈
records와legend가 올 수 있습니다.