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.