🇨🇴Retrieve Details of a Legal Process by Number
Service to obtain details of a specific judicial process using its unique ID from the judicial branch.
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
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
Name
Type
Required?
Description
Example
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"
}
}
}
Last updated