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β
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| name | type | required | description |
|---|---|---|---|
fullName | string | yes | Full name to search (e.g. as shown on official records). URL-encode spaces in raw HTTP clients. |
Requestβ
- JavaScript
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/sigep/name"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"fullName": "FRANCIA ELENA MARQUEZ MINA"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing fullName\n"
}
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β
fullNameis required; omitting it typically yields 409MissingParameter.- 200 with an empty
recordsarray and alegendmessage 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_servicewhen applicable.