OFAC + EU Sanctions Screen avatar

OFAC + EU Sanctions Screen

Pricing

$150.00 / 1,000 sanctions screens

Go to Apify Store
OFAC + EU Sanctions Screen

OFAC + EU Sanctions Screen

Screen names and organizations against the authoritative OFAC Specially Designated Nationals (SDN) / Consolidated sanctions list. Fuzzy, normalized name matching returns match candidates with match score, party type, programs, and country.

Pricing

$150.00 / 1,000 sanctions screens

Rating

0.0

(0)

Developer

Matthias

Matthias

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Categories

Share

OFAC + EU Sanctions Name Screen

Screen names and organizations against the authoritative OFAC Specially Designated Nationals (SDN) list and the EU Consolidated Financial Sanctions list. Uses normalized, token-aware fuzzy matching (handles LAST, FIRST reversal, transliteration variants, and spelling variations via Levenshtein edit distance) to surface candidate hits with a match score, party type, programmes/regulations, and country.

  • Free, official public data — OFAC (US Treasury) and EU Consolidated list (European Commission). No API key or per-lookup provider cost.
  • Returns clean JSON rows for KYB/KYC/AML pipelines, dashboards, LLMs, and AI agents.

Quick start

python3 -m venv .venv && . .venv/bin/activate
pip install -r requirements.txt
python -m src # local test: downloads live lists, prints sample matches

Input

FieldTypeDefaultNotes
namesarray of strings(required)Names / aliases to screen; one item per screen
thresholdnumber0.8Min similarity score (0-1). 1.0 exact; 0.7-0.9 recommended
max_resultsint20Max candidate matches per screened name
use_chargesbooltrueEnables pay-per-event billing; set false for free/internal runs

Output

One JSON object per screened name in the dataset:

{
"query": "Vladimir Putin",
"match_count": 2,
"hits": [
{
"name": "PUTIN, Vladimir Vladimirovich",
"source": "OFAC",
"type": "individual",
"programs": "SDGT [FTO]",
"country": "President of the Russian Federation",
"city": "",
"score": 1.0
}
]
}

Data sources

  • OFAC SDN list (US Treasury): https://www.treasury.gov/ofac/downloads/sdn.csv
  • EU Consolidated Financial Sanctions (European Commission FISMA): the EU consolidated list XML endpoint

Both are official, authoritative sanctions lists.

Disclaimer

This Actor is a screening aid; it does not make legal determinations. Operators remain solely responsible for compliance decisions and should confirm any match against the official lists. It covers the OFAC SDN and EU Consolidated lists (not UN or other countries' lists yet).

Support

  • Questions or issues: open an issue via the Store listing or Apify community.
  • Data is refreshed from the official lists at each run.