Skip to main content

🇨🇴 Colombie — SIGEP par document

Point d'accès

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

Requête avec documentType et documentNumber. Pour une recherche par nom complet, utilisez SIGEP par nom.

En-têtes

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Paramètres

nametyperequireddescription
documentTypestringyesCC ou NIT (validation API).
documentNumberstringyesSans espaces ni ponctuation.

Requête

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

Réponse

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"documentType": "CC",
"documentNumber": "34503110",
"records": [],
"legend": ""
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:49 AM"
},
"id": "VMH0I"
}

Remarques

  • documentType : CC ou NIT uniquement.
  • Réponse 200 possible avec records vide.