Skip to main content

Certificate of Validity for Legal Professionals

Endpoint​

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

The Certificate of Validity for Legal Professionals service verifies the current registration status of legal professionals in Colombia. Send documentType, documentNumber, and quality as query parameters. documentType must be CC (CΓ©dula de CiudadanΓ­a) or CE (CΓ©dula de ExtranjerΓ­a). quality identifies the professional role to check (commonly ABG, JUEZPAZ, or LTβ€”use the code expected by the source for your case). The response includes certification status, dates, resume identifier (idHojaDeVida), and related fields. The field encalidad is spelled as returned by the API.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringYesCC or CE only (other types are rejected).
documentNumberstringYesID number for the professional to consult.
qualitystringYesProfessional category code (e.g. ABG, JUEZPAZ, LT).

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"
}

Features​

  • Professional Verification: Verify the current status of legal professionals in Colombia
  • Multiple Professional Types: Support for ABG (Abogado), JUEZPAZ (Juez de Paz), and LT (Legal Technician)
  • Status Tracking: Check if professional is currently active (Vigente) or inactive
  • Certification Details: Access creation and issuance dates of professional certifications
  • Unique Identification: Get unique resume identifier for each professional
  • License Information: Access professional license numbers and details
  • 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​

  • Professional Verification: Verify the credentials and status of legal professionals
  • Due Diligence: Check professional status during legal consultations
  • Compliance Verification: Ensure legal professionals meet current requirements
  • Background Checks: Verify professional history and current status
  • Legal Services: Validate professionals before engaging their services

Notes​

  • documentType is restricted to CC or CE at the API layer (not NIT).
  • Typical quality values include ABG (lawyer), JUEZPAZ, and LT; confirm the code required for your integration.