Colombia — Consulta SIGEP por documento
Endpoint
GET https://api.verifik.co/v2/co/sigep/number
El directorio SIGEP se consulta con documentType y documentNumber. Para búsqueda solo por nombre completo, use SIGEP por nombre.
Encabezados
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| name | type | required | description |
|---|---|---|---|
documentType | string | sí | CC o NIT (validación de API). |
documentNumber | string | sí | Número sin espacios ni puntuación. |
Solicitud
- JavaScript
- 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())
Respuesta
- 200
- 404
- 409
{
"data": {
"arrayName": ["FRANCIA", "ELENA", "MARQUEZ", "MINA"],
"documentNumber": "34503110",
"documentType": "CC",
"firstName": "FRANCIA ELENA",
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"lastName": "MARQUEZ MINA",
"legend": "",
"records": [
{
"name": "FRANCIA ELENA MARQUEZ MINA",
"linkProfile": "https://www.funcionpublica.gov.co/dafpIndexerBHV/hvSigep/detallarHV/S4588442-0018-4",
"position": "Servidor Público",
"entity": "DEPARTAMENTO ADMINISTRATIVO DE LA PRESIDENCIA DE LA REPUBLICA",
"email": "juliethrincon@presidencia.gov.co",
"phone": "3822800",
"location": "BOGOTÁ. D.C. - BOGOTÁ. D.C."
}
]
},
"signature": {
"dateTime": "October 27, 2025 8:49 AM",
"message": "Certified by Verifik.co"
},
"id": "VMH0I"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [CC,NIT]"
}
Características
- Filas del directorio: Cargo, entidad, correo, teléfono y ubicación cuando se publican.
- Enlace al perfil: URL oficial cuando existe.
- Leyenda: Puede explicar ausencia de filas en el directorio.
Casos de uso
- Transparencia y proveedores: Verificar listados vinculados a un documento.
- Cumplimiento / KYB: Debida diligencia sobre personas ligadas al sector público.
Notas
documentTypedebe serCCoNIT(algunas interfaces muestran más opciones; la API solo acepta estas).- Puede haber 200 con
recordsvacío ylegendexplicativo.