Skip to main content

Public Servant Query by Name (SIGEP)

Public Servant Query by Name​

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

The SIGEP (Sistema de InformaciΓ³n y GestiΓ³n del Empleo PΓΊblico) service allows you to query information about public servants in Colombia by providing their full name. This service provides detailed information about public servants including their full name, position, entity, contact information, and profile link.

Implementation​

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Query Parameters

NameTypeRequired?DescriptionExample
fullNameStringTrueFull name of the public servant to consult.FRANCIA ELENA MARQUEZ MINA

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/sigep/name',
params: {fullName: 'FRANCIA ELENA MARQUEZ MINA'},
headers: {
Accept: 'application/json',
Authorization: 'Bearer <tu_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response

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

Use Cases​

  • Name-based Search: Find public servant information when you only have their name
  • Government Transparency: Verify public servant information for transparency purposes
  • Background Checks: Conduct background checks for employment or business purposes
  • Due Diligence: Perform due diligence for partnerships with government entities
  • Directory Lookup: Search for public servants by name for contact purposes