Skip to main content

Colombia β€” SIGEP lookup by document

Endpoint​

GET https://api.verifik.co/v2/co/sigep/number

The SIGEP directory (Colombian public employment / contracting records) is queried using documentType and documentNumber. The service resolves the person’s identity, then returns directory rows (role, entity, contact, profile link) when matches exist. For lookup by full name only, use SIGEP lookup by name.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

nametyperequireddescription
documentTypestringyesCC or NIT (API validation).
documentNumberstringyesID number without spaces or punctuation.

Request​

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

Response​

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

Features​

  • Directory rows: Position, entity, email, phone, and location when published.
  • Profile link: Official SIGEP / FunciΓ³n PΓΊblica URL when available.
  • Legend: May explain empty directory results while the citizen record exists.

Use cases​

  • Transparency and vendor checks: Confirm public-sector or contractor listings tied to an ID.
  • KYB / compliance: Support due diligence on individuals linked to government work.

Notes​

  • documentType must be CC or NIT for this endpoint (some UIs may show more labels; the API enforces these two).
  • If the directory has no rows, the response may still be 200 with an empty records array and a legend message.