Skip to main content

OFAC Background Check

Endpoint​

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

This service provides a simple way to check if a person or entity appears on the U.S. Department of the Treasury's Office of Foreign Assets Control (OFAC) Specially Designated Nationals (SDN) and Blocked Persons List. By using this service, you can verify whether the individual or entity is subject to sanctions or restrictions enforced by OFAC.

Use Cases:​

  • Sanctions Compliance: Essential for financial institutions, exporters, and multinational corporations to ensure they are not dealing with sanctioned individuals or entities.
  • Risk Mitigation: Helps businesses avoid penalties by ensuring compliance with U.S. and international trade regulations.
  • KYC & AML: A critical tool for Know Your Customer (KYC) and Anti-Money Laundering (AML) processes in industries such as banking, insurance, and real estate.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Query via Document

NameTypeRequiredDescription
documentTypeStringFalseThe document type that you want to request.
documentNumberStringFalseDocument number to consult, without spaces or points.

Query via Full Name​

NameTypeRequiredDescription
fullNameStringFalseInstead of documentType and documentNumber, you can pass the name directly of the person/business.

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/ofac',
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": "80927603",
"fullName": "MATEO ANDRES VERIFIK",
"firstName": "MATEO ANDRES",
"lastName": "VERIFIK",
"arrayName": [
"MATEO",
"ANDRES",
"VERIFIK"
],
"foundInOFAC": false,
"details": {}
},
"signature": {
"dateTime": "June 27, 2025 4:33 PM",
"message": "Certified by Verifik.co"
},
"id": "U4RBQ"
}