Skip to main content

🇨🇴 Colombie — Casier judiciaire (expedientes)

Point d'accès

GET https://api.verifik.co/v2/co/rama/juzgado/expedientes

Envoyez documentType (CC uniquement), documentNumber et city en query (ex. BOGOTA).

En-têtes

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Paramètres

nametyperequireddescription
documentTypestringyesCC seulement.
documentNumberstringyesNuméro à interroger.
citystringyesCode ville/circuit (ex. BOGOTA, MEDELLIN).

Requête

import axios from "axios";

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

Réponse

{
"data": {
"documentType": "CC",
"documentNumber": "1234567890",
"city": "BOGOTA",
"courtOfepms": "EPMS EXAMPLE",
"filingNumber": "2024-000123"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "March 3, 2022 3:55 PM"
},
"id": "ABC12"
}

Remarques

  • L’API n’accepte que documentType = CC.
  • city doit être une valeur prise en charge par l’intégration.