Skip to main content

Colombia โ€” SIGEP lookup by full name

Endpointโ€‹

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

Query the SIGEP public directory using fullName (as registered in the search form). Results include matching rows with role, entity, contact details, and an official profile link when available. If you have document type and number, prefer SIGEP lookup by document for a more precise flow.

Headersโ€‹

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parametersโ€‹

nametyperequireddescription
fullNamestringyesFull name to search (e.g. as shown on official records). URL-encode spaces in raw HTTP clients.

Requestโ€‹

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

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

Featuresโ€‹

  • Directory search: Name-based lookup against the SIGEP web directory.
  • Rich rows: Entity, role, email, phone, and location when published.
  • Profile links: Official Funciรณn Pรบblica URLs when present.

Use casesโ€‹

  • Discovery: Find officials or contractors when you do not have an ID number.
  • Contact and verification: Retrieve published contact metadata for due diligence or transparency workflows.

Notesโ€‹

  • fullName is required; omitting it typically yields 409 MissingParameter.
  • 200 with an empty records array and a legend message is possible when no directory matches are returned.
  • The upstream SIGEP service may occasionally be unavailable; errors are surfaced as 409 with Endpoint_out_of_service when applicable.