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
Query Parameters
Name
Type
Required?
Description
Example
Request
Response
var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/co/rama/proceso/123456789")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
return
}
print(String(data: data, encoding: .utf8)!)
}
task.resume()