🇨🇴Colombian Politically Exposed Persons

Service to confirm if a citizen is listed in the Politically Exposed Persons list.

Colombian Politically Exposed Persons

GET - https://api.verifik.co/v2/co/politically-exposed-persons

The Colombian Politically Exposed Persons Lookup service allows you to verify if an individual is designated as a politically exposed person (PEP) in Colombia. PEPs are individuals who hold or have held prominent public positions or functions and may pose a higher risk for corruption or money laundering.

This service provides details such as the individual's full name, document number, entity name, designation position, and dates of disassociation and entailment. Note that this service is available exclusively for Colombian individuals.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameType¿Required?DescriptionExample

documentNumber

String

True

Document number of the person to consult, without spaces or points, the endpoint only receives a Colombian ID card for the response.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/politically-exposed-persons>',
  params: {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": {
        "designationPosition": "PRESIDENTE DE LA REPÚBLICA",
        "documentNumber": "208079",
        "entailmentAt": "2023-01-26 11:44",
        "entityName": "DEPARTAMENTO ADMINISTRATIVO DE LA PRESIDENCIA DE LA REPUBLICA",
        "fullName": "GUSTAVO FRANCISCO PETRO URREGO",
        "isContractor": "NO"
    },
    "signature": {
        "dateTime": "April 11, 2024 2:36 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "CYBE4"
}

Last updated