🇨🇴Colombian Legal Processes

Service to consult judicial processes using the data of the involved parties.

Endpoint

https://api.verifik.co/v2/co/rama/procesos

The Colombian Legal Processes service provides detailed information about legal processes associated with a Colombian citizen or company. By supplying a valid Colombian document number, users can access a list of legal processes related to the individual or entity. The response includes information such as the date of the process, the last date of action, the office where it was processed, and the subjects involved.

Note: The Judicial Branch queries are made using names rather than exact identification card data. As a result, Verifik cannot guarantee a 100% successful response due to this limitation in the data source.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

documentType

String

True

Document type. Valid parameters: CC, NIT.

CC

documentNumber

String

True

Document number of the person from whom you want to seek legal proceedings.

123456789

Request

import axios from 'axios';

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

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

Response

{
  "data": {
    "documentType": "CC",
    "documentNumber": "123456789",
    "consultedSubject": "MATEO VERIFIK",
    "list": [
      {
        "idProceso": 123456789,
        "idConexion": 262,
        "llaveProceso": "110014003XXXXXXXXX",
        "fechaProceso": "2007-09-21T00:00:00",
        "fechaUltimaActuacion": "2010-11-27T00:00:00",
        "despacho": "JUZGADO XXX CIVIL MUNICIPAL DE BOGOTÁ ",
        "departamento": "BOGOTÁ",
        "sujetosProcesales": [
          "Demandante: XXXXXX  XXXXX XXXX ",
          "Demandado: XXXX XXXX XXXX XXXX "
        ],
        "esPrivado": false
      }
    ],
    "pagination": {
      "records": 21,
      "recordsPerPage": 20,
      "pages": 2,
      "page": 1
    },
    "signature": {
      "dateTime": "March 3, 2022 3:55 PM",
      "message": "Certified by Verifik.co"
    }
  }
}

Last updated