Skip to main content

Colombia โ€” Judicial records (court files)

Verifikโ€™s Judicial records endpoint returns court file (expediente) details from Colombiaโ€™s judicial system for a cรฉdula de ciudadanรญa (CC) holder in a given city (circuit). Typical fields include court office (EPMS), receipt date, municipality, filing number, and party names when returned by the source.

API Referenceโ€‹

Endpointโ€‹

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

Send documentType, documentNumber, and city as query parameters.

Headersโ€‹

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parametersโ€‹

NameTypeRequiredDescription
documentTypestringYesMust be CC (cรฉdula de ciudadanรญa).
documentNumberstringYesID number without formatting as required for lookup.
citystringYesJudicial circuit city code, e.g. BOGOTA, MEDELLIN, CALI, BARRANQUILLA, and others supported by the integration.

Requestโ€‹

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

Responseโ€‹

{
"data": {
"appeal": "S",
"city": "BOGOTA",
"codeRoom": "001",
"consOffice": "01",
"corporation": "EJEMPLO",
"court": "JUZGADO EJEMPLO",
"courtOfepms": "EPMS EXAMPLE",
"documentNumber": "1234567890",
"documentType": "CC",
"filingNumber": "2024-000123",
"municipality": "BOGOTร D.C.",
"name": "EXAMPLE USER",
"receiptDate": "2024-01-15",
"representative": "",
"year": "2024"
},
"signature": {
"dateTime": "April 20, 2026 10:00 AM",
"message": "Certified by Verifik.co"
},
"id": "ABC12"
}

Featuresโ€‹

  • Court file metadata from the Rama Judicial integration (fields vary by source)
  • City-scoped lookup using supported circuit codes
  • Signed responses; repeat calls may be cached

Use Casesโ€‹

  • KYC and risk workflows that need judicial file context in Colombia
  • Legal and compliance checks tied to a CC and jurisdiction (city)

Notesโ€‹

  • documentType is restricted to CC at the API layer.
  • city must match a value accepted by the upstream service (see Parameters).
  • Availability and field completeness depend on the underlying judicial registry; empty or error outcomes are possible for valid inputs.