🌎ONU Background Check

Service for querying criminal records with the ONU.

ONU Background Check

GET - https://api.verifik.co/v2/onu

This service allows you to check if a person is included in the United Nations sanctions list. By providing the individual's full name and other identifying details, the service returns a boolean flag indicating whether the person is listed on the sanctions list. This is useful for compliance and regulatory checks to ensure individuals or entities are not subject to international sanctions.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed values: CC, CE, PA, RC, TI, PEP, CCVE, NIT, CURP, DNI, CCEC.

CC

documentNumber

String

True

Document number to consult, without spaces or points.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/onu>',
  params: {documentType: 'CC', documentNumber: '80251972'},
  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": "CC",
    "documentNumber": "1234567894",
    "fullName": "MATEO VERIFIK",
    "firstName": "MATEO",
    "lastName": "VERIFIK",
    "arrayName": [
      "MATEO",
      "VERIFIK"
    ],
    "foundInONU": true
  },
  "signature": {
    "dateTime": "August 4, 2022 3:57 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated