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.