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.