Skip to main content

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

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parámetros

nametyperequireddescription
documentTypestringCC o NIT (validación de API).
documentNumberstringNúmero sin espacios ni puntuación.

Solicitud

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);

Respuesta

{
"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"
}

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

  • documentType debe ser CC o NIT (algunas interfaces muestran más opciones; la API solo acepta estas).
  • Puede haber 200 con records vacío y legend explicativo.