🇨🇴Lawyer Verification

Service to consult lawyers through the judicial branch.

Endpoint

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

The Lawyer Verification service offers a comprehensive solution to validate the professional credentials of lawyers in Colombia. By providing the lawyer's document number and type, users can access essential information about their professional status and credentials.

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, CE.

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/abogados',
  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

{
  "value": {
    "data": {
      "documentType": "CC",
      "documentNumber": "123456789",
      "fullName": "MATEO VERIFIK",
      "firstName": "MATEO",
      "lastName": "VERIFIK",
      "arrayName": [
        "MATEO",
        "VERIFIK"
      ],
      "results": [
        {
          "contactId": "71199f81-d172-e511-80f1-0012345676432b17",
          "documentNumber": "123456789",
          "documentTypeId": "1",
          "documentTypeName": "Cédula de ciudadanía",
          "firstName": "MATEO",
          "lastName": "VERIFIK",
          "nonValidityReason": " - ",
          "numberOfRecords": 1,
          "personalEmail": "-",
          "statusName": "Vigente",
          "tarcarliceNumber": "123456"
        }
      ]
    },
    "signature": {
      "dateTime": "May 24, 2023 4:25 PM",
      "message": "Certified by Verifik.co"
    }
  }
}

Last updated