🇨🇴Certificate of Validity for Legal Professionals

Service to check if a legal professional is valid to perform functions in the judicial branch.

Endpoint

https://api.verifik.co/v2/co/rama/certificado/vigencia

The Certificate of Validity for Legal Professionals service allows users to verify the current status of legal professionals in Colombia. By providing the document type and number (e.g., CC for Cédula de Ciudadanía) along with the desired quality parameter, users can access detailed information about the professional’s certification. The response includes the professional’s quality (e.g., Abogado for lawyer), current status (e.g., Vigente for active), creation and issuance dates, a unique identifier for the professional’s resume, and other relevant details.

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 to consult.

123456789

quality

String

True

Type of professional to consult. Valid parameters: ABG, JUEZPAZ, LT.

ABG

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: 'https://api.verifik.co/v2/co/rama/certificado/vigencia',
  params: {documentType: 'CC', documentNumber: '123456789',Quality:'ABG'},
  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": {
        "certificado": "",
        "documentNumber": "123456789",
        "documentType": "CC",
        "encalidad": "Abogado",
        "estado": "Vigente",
        "fechaCreacion": "30/05/2014",
        "fechaExpedicion": "2014/05/30",
        "idHojaDeVida": "5757153a-0e73-e123-80f1-001234b16b17",
        "motivoNoVigencia": " - ",
        "numeroTarCarLice": "123456",
        "observacionesPenaAccesoria": null
    },
    "signature": {
        "dateTime": "April 5, 2024 2:17 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "CHKEH"
}

Last updated