Colombia — Consulta SIGEP por nombre completo
Endpoint
GET https://api.verifik.co/v2/co/sigep/name
Consulte el directorio SIGEP con el parámetro fullName. Si dispone de tipo y número de documento, use SIGEP por documento.
Encabezados
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| name | type | required | description |
|---|---|---|---|
fullName | string | sí | Nombre completo a buscar. Codifique espacios en clientes HTTP manuales. |
Solicitud
- JavaScript
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/sigep/name"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"fullName": "FRANCIA ELENA MARQUEZ MINA"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Respuesta
- 200
- 404
- 409
{
"data": {
"fullName": "FRANCIA ELENA 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:46 AM",
"message": "Certified by Verifik.co"
},
"id": "4ROH0"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing fullName\n"
}
Características
- Búsqueda por nombre: Consulta al formulario web del directorio SIGEP.
- Filas detalladas: Entidad, cargo, contacto y enlace al perfil cuando existen.
Casos de uso
- Localización: Encontrar fichas cuando no hay número de documento.
- Verificación: Datos publicados para transparencia o debida diligencia.
Notas
fullNamees obligatorio; si falta, suele devolverse 409.- Puede haber 200 con
recordsvacío ylegend. - Si el servicio de SIGEP no responde, puede devolverse 409
Endpoint_out_of_service.