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β
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| processNumber | String | Yes | Process ID delivered by the judicial process endpoint. | 123456789 |
Requestβ
- JavaScript
- Python
- PHP
- Swift
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);
}
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
headers = {
'Accept': "application/json",
'Authorization': "JWT token"
}
conn.request("GET", "/v2/co/rama/proceso/123456789", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', 'https://api.verifik.co/v2/co/rama/proceso/123456789', [
'headers' => [
'Accept' => 'application/json',
'Authorization' => 'JWT token',
],
]);
echo $response->getBody();
import Foundation
let headers = [
"Accept": "application/json",
"Authorization": "JWT token"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://api.verifik.co/v2/co/rama/proceso/123456789")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
Responseβ
- 200
- 404
- 409
{
"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"
}
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing processNumber\n"
}
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