Skip to main content

OFAC Background Check

API Reference​

Endpoint​

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

Check whether a person or entity appears on the U.S. Treasury Office of Foreign Assets Control (OFAC) Specially Designated Nationals (SDN) and Blocked Persons List using documentType with documentNumber, or fullName. Use results for sanctions compliance, trade screening, and KYC/AML workflows.

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
documentTypestringNoThe document 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​

  • Sanctions compliance: Avoid dealing with blocked parties subject to OFAC enforcement.
  • Risk mitigation: Reduce penalties from U.S. and international trade rules.
  • KYC and AML: Strengthen customer screening in banking, insurance, and real estate.

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

Notes​

  • Responses include foundInOFAC and, when present, OFAC detail metadata such as fullLink for the SDN entry.