Skip to main content

Colombia — Citizen lookup via Procuraduría

Validate a Colombian document number and extract names from Procuraduría General de la Nación. This is the official source that supports Cédula de ciudadanía (CC), Cédula de extranjería (CE), Permiso Especial de Permanencia (PEP), NIT, and Permiso por Protección Temporal (PPT).

Unlike citizen by document (/v2/co/cedula), this endpoint hits Procuraduría only — it does not try DIAN, ADRES, or Registraduría. Unlike disciplinary records (/v2/co/procuraduria/antecedentes), it does not return antecedentes or legend.

What this API returns

  • documentNumber, documentType
  • firstName, lastName, fullName, arrayName
  • A signed Verifik response wrapper

API reference

Endpoint

GET https://api.verifik.co/v2/co/procuraduria

Use this endpoint when you need name extraction only from Procuraduría, including document types that other /cedula sources do not cover. The same integration is available as POST with a JSON body. GET uses query parameters as shown below.

Typical fields: documentType, documentNumber, firstName, lastName, fullName, arrayName. Use /v2/co/cedula when you want Verifik to try multiple government sources. Use /v2/co/procuraduria/antecedentes when you need disciplinary history.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

nametyperequireddescriptionExamples
documentTypestringyesOne of CC, CE, PPT, NIT, PEPCE
documentNumberstringyesDocument number, digits only688925

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/procuraduria", {
params: {
documentType: "CE",
documentNumber: "688925",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"documentType": "CE",
"documentNumber": "688925",
"firstName": "JUAN SEBASTIAN",
"lastName": "RAIGOSA GALLEGO",
"fullName": "JUAN SEBASTIAN RAIGOSA GALLEGO",
"arrayName": ["JUAN", "SEBASTIAN", "RAIGOSA", "GALLEGO"]
},
"signature": {
"dateTime": "August 25, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

Features

  • Direct Procuraduría name lookup
  • Supports CC, CE, PPT, NIT, PEP
  • No disciplinary records (antecedentes, legend)
  • GET and POST share the same handler

Use cases

  • Validate a cédula de extranjería or NIT when you only need the registered name
  • Isolate Procuraduría from the multi-source /cedula consolidation
  • Prefer a dedicated product when you do not want antecedentes billed separately

Notes