Screen any person or company name against 19,000+ SDN entries.
import requests
def screen_name(name):
resp = requests.get(
"https://sanctionsai.dev/sanctions",
params={"name": name}, timeout=5
)
return resp.json()
result = screen_name("Oleg Deripaska")
if result["blocked"]:
print(f"MATCH: {result['matches']}")import csv, requests
with open("customers.csv") as f:
for row in csv.DictReader(f):
result = screen_name(row["company_name"])
if result["blocked"]:
print(f"BLOCKED: {row['company_name']}")
# Log to audit file
with open("blocked.csv", "a") as out:
writer = csv.writer(out)
writer.writerow([row["company_name"], result["matches"]])
Check any wallet, name, or entity against OFAC, EU, UN sanctions lists in real time.
Free wallet checker