🇨🇴Court Case Records Lookup

Service to check if a citizen has judicial files in various cities in Colombia.

Court Case Records Lookup

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

The Court Case Records Lookup service allows users to access information about legal proceedings in Colombia. By providing the individual's document type and number (e.g., CC for Citizenship Card) and the city where the proceedings occurred, users can retrieve detailed case information. The response includes data such as the court (EPMS - Sistema de Gestión de Despachos Judiciales), city, receipt date, municipality, corporation, courtroom code, consulting office, year, filing number, appeal status, identification details, the name of the involved party, and the representative.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Valid parameters: CC, NIT, CE.

CC

documentNumber

String

True

Document number of the person to consult.

123456789

city

String

True

City where file searches are required, only applies to major cities in Colombia.

CALI

List of allowed cities

  • BOGOTA

  • VILLAVICENCIO

  • TUNJA

  • QUIBDO

  • CALI

  • POPAYAN

  • PASTO

  • PALMIRA

  • NEIVA

  • MEDELLIN

  • MANIZALES

  • IBAGUE

  • FLORENCIA

  • BUGA

  • BUCARAMANGA

  • BARRANQUILLA

  • ARMENIA

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/rama/juzgado/expedientes>',
  params: {documentType: 'CC', documentNumber: '123456789',city:'CALI'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
    "data": {
        "appeal": "00",
        "city": "CALI",
        "codeRoom": "04",
        "consOffice": "002",
        "corporation": "40",
        "court": "8021",
        "courtOfepms": "002",
        "documentNumber": "12345678",
        "documentType": "CC",
        "filingNumber": "76892400400220030012300",
        "municipality": "76892",
        "name": "MATEO VERIFIK",
        "receiptDate": "27/8/2010",
        "representative": "MATEO VERIFIK",
        "year": "2003"
    },
    "signature": {
        "dateTime": "April 5, 2024 2:25 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "0X1J0"
}

Last updated