Skip to main content

Retrieve Details of a Legal Process by Number

Endpoint​

https://api.verifik.co/v2/co/rama/proceso/{processNumber}

The Legal Branch service allows users to retrieve detailed information about a specific legal process in Colombia by providing its number. The service returns a response that includes details such as the process type, class, subclass, involved parties, actions taken, and more.

This service is valuable for legal professionals and individuals seeking comprehensive information about a particular legal case.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
processNumberStringYesProcess ID delivered by the judicial process endpoint.123456789

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/rama/proceso/18738473',
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": {
"details": {
"idRegProceso": 123456,
"llaveProceso": "12345678987654321",
"idConexion": 180,
"esPrivado": false,
"fechaProceso": "2013-11-28T00:00:00",
"despacho": "JUZGADO 005 CIVIL DEL CIRCUITO DE BOGOTÁ ",
"ponente": "XXXX XXXX XXX XXXX",
"tipoProceso": "Declarativo",
"claseProceso": "Divisorios",
"subclaseProceso": "Sin Subclase de Proceso",
"recurso": "Sin Tipo de Recurso",
"ubicacion": "Archivo",
"contenidoRadicacion": "ESCRITURA",
"fechaConsulta": "2021-12-17T15:53:20.15",
"ultimaActualizacion": "2021-12-16T18:27:25.95"
},
"subjects": [
{
"idRegSujeto": 15775331,
"tipoSujeto": "Demandante",
"esEmplazado": false,
"identificacion": "string",
"nombreRazonSocial": "XXXX XXXX XXXX XXXX",
"cant": 2
},
{
"idRegSujeto": 15775330,
"tipoSujeto": "Demandado",
"esEmplazado": false,
"identificacion": "string",
"nombreRazonSocial": "XXXXXX XXXX XXXX XXXX ",
"cant": 2
}
],
"actions": [
{
"idRegActuacion": 12345678,
"llaveProceso": "11001310300520130078000",
"consActuacion": 8,
"fechaActuacion": "2014-02-10T00:00:00",
"actuacion": "XXXXXX XXXXX",
"anotacion": "ARCHIVO FEBRERO DE 2014.PAQUETE 285.",
"fechaInicial": "string",
"fechaFinal": "string",
"fechaRegistro": "2014-02-10T00:00:00",
"codRegla": "00 ",
"conDocumentos": false,
"cant": 8
}
],
"signature": {
"dateTime": "August 30, 2022 1:26 PM",
"message": "Certified by Verifik.co"
}
}
}

Features​

  • Detailed Process Information: Access comprehensive details about specific legal processes
  • Subject Information: View all parties involved in the legal process
  • Action History: Track all actions and proceedings in the case
  • Process Classification: Understand process type, class, and subclass
  • Court Information: Access details about the court handling the case
  • Timeline Tracking: View creation dates, last updates, and action dates
  • Structured Response: Organized data format for easy integration
  • Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
  • Error Handling: Comprehensive error responses for various scenarios

Use Cases​

  • Legal Case Analysis: Deep dive into specific legal cases
  • Process Tracking: Monitor the progress of ongoing legal proceedings
  • Legal Research: Investigate specific legal processes for research purposes
  • Due Diligence: Verify details of legal cases during business transactions
  • Court Documentation: Access official court records and proceedings