Skip to main content

ONU Background Check

API Reference​

Endpoint​

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

Query the United Nations sanctions list to see whether a person or entity appears using documentType and documentNumber, or fullName. Use the results for global compliance, KYC, and AML workflows when screening counterparties.

Note: Dates (date of birth or expedition date) must be in dd/mm/yyyy format.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

info

For the complete list of supported Document Types and their specific mandatory parameters, please visit the Document Types guide.

NameTypeRequiredDescription
documentTypestringNoDocument type that you want to request
documentNumberstringNoDocument number to consult, without spaces or points
fullNamestringNoInstead of documentType and documentNumber, you can pass the name directly of the person/business

Use Cases​

  • International compliance: Verify individuals and entities against UN sanctions before onboarding or transactions.
  • Risk assessment: Reduce financial and reputational exposure from sanctioned parties.
  • Regulatory programs: Support banking, finance, and insurance KYC/AML requirements.

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

Notes​

  • UN sanctions verification for persons and entities.
  • Structured responses for integration; supports JavaScript, Python, PHP, and Swift examples above.