Skip to main content

🇨🇴 Colombie — Recherche d’avocats

Point d'accès

GET https://api.verifik.co/v2/co/rama/abogados

Envoyez documentType (CC, CE ou NIT) et documentNumber en query. Les fiches sont dans le tableau results.

En-têtes

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Paramètres

nametyperequireddescription
documentTypestringyesCC, CE ou NIT.
documentNumberstringyesNuméro à interroger.

Requête

import axios from "axios";

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

Réponse

{
"data": {
"documentNumber": "123456789",
"documentType": "CC",
"firstName": "María",
"fullName": "María González López",
"lastName": "González López",
"results": [
{
"documentNumber": "123456789",
"documentTypeName": "Cédula de ciudadanía",
"firstName": "María",
"lastName": "González López",
"statusName": "Vigente",
"tarcarliceNumber": "987654"
}
]
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "April 20, 2026 10:00 AM"
},
"id": "ABC12"
}

Remarques

  • Seuls CC, CE et NIT sont acceptés pour documentType.