🇨🇴Colombian Police Record Check

Service to check whether a citizen is wanted by the national police or not.

Colombian Police Record Check

GET-https://api.verifik.co/v2/co/policia/consultar

The Colombian Police Record Check service allows users to verify the criminal history of an individual in Colombia by providing their ID document number. It checks for any pending legal matters with Colombian judicial authorities, in accordance with Article 248 of the Colombian Constitution. The response includes the individual's full name, first name, last name, and additional details about their legal status. This service is ideal for businesses and organizations conducting background checks for hiring or due diligence purposes.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Valid parameters: CC, CE.

CC

documentNumber

String

True

Document number of the person to consult, without spaces or points.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/policia/consultar>',
  params: {documentType: 'CC', documentNumber: '123456789'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "documentType": "CCAR",
    "documentNumber": "123456789",
    "fullName": "MATEO VERIFIK",
    "firstName": "MATEO",
    "lastName": "VERIFIK",
    "arrayName": [
      "MATEO",
      "VERIFIK"
    ]
  },
     "details": "NO TIENE ASUNTOS PENDIENTES CON LAS AUTORIDADES JUDICIALES\\nde conformidad con lo establecido en el artículo 248 de la Constitución Política de Colombia. \\n\\nEn cumplimiento de la Sentencia SU-458 del 21 de junio de 2012, proferida por la Honorable Corte Constitucional, la leyenda “NO TIENE ASUNTOS PENDIENTES CON LAS AUTORIDADES JUDICIALES” aplica para todas aquellas personas que no registran antecedentes y para quienes la autoridad judicial competente haya decretado la extinción de la condena o la prescripción de la pena. "
    },
    "signature": {
        "dateTime": "March 13, 2024 10:48 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "7QS69"
}

Last updated