News· Last updated April 10, 2026

OFAC's April 2026 SDN Updates — Trump Year One Hits 1,300 Designations

OFAC's April 2026 SDN list update hits record pace with 1,300+ designations in Trump's first year. What compliance teams must do right now.

OFAC's April 2026 SDN Updates — Trump Year One Hits 1,300 Designations

The U.S. Treasury's Office of Foreign Assets Control (OFAC) has been running at an unprecedented pace in 2026. According to the Federal Register's April 7, 2026 OFAC Sanctions Actions notice, the April update includes fresh SDN modifications spanning Russian-linked entities and Venezuelan-connected individuals — continuing a relentless enforcement cadence that has defined the current administration's first year.

The numbers are staggering. In Trump's first year back in office, OFAC sanctioned over 1,300 individuals and entities — a figure that dwarfs prior year paces and reflects a sweeping expansion across Russian oil shadow fleets, Southeast Asian fraud networks, Iranian shipping intermediaries, and Chinese supply chain enablers.

What Changed in the April 2026 SDN Update

The April 7 Federal Register notice includes several noteworthy modifications:

  • Removals: Finnish-connected companies and individual Nikita Kovalevskij were delisted, reflecting active diplomatic activity in the region
  • Russia-linked updates: Entities associated with the Russian shadow fleet continue to cycle through the SDN list with new vessel names, flag changes, and beneficial ownership restructuring
  • Venezuela-related adjustments: Several individuals with ties to Venezuelan state enterprises saw status updates as negotiations with the Maduro government continue

These modifications aren't just compliance footnotes — they represent live counterparty risk for any business operating in global trade, finance, or logistics.

Why 1,300 Designations in Year One Matters

The velocity of sanctions designations has outpaced what most compliance programs were built to handle. Legacy batch-screening processes that ran weekly or monthly checks are no longer sufficient.

Consider the math: 1,300 designations over 12 months equals roughly 108 new SDN entries per month, or approximately 25 per week. If your counterparty screening runs on a weekly batch cycle, you have a multi-day exposure window on every new designation.

The compliance implications span multiple industries:

  • Financial services: Wire transfer approval flows must screen in real time, not in batch
  • Trade finance: Letters of credit must validate beneficiaries at origination, not retrospectively
  • SaaS platforms: Any service with international customers needs automated onboarding screening
  • Crypto exchanges: Wallet address screening against OFAC-designated addresses is legally required

The Shadow Fleet Problem

One of the defining enforcement themes of 2026 has been the Russian crude oil shadow fleet — a network of hundreds of tankers operating under flags of convenience, with layered beneficial ownership designed to evade OFAC's SDN list.

OFAC has responded with a rolling campaign of vessel-level designations, but the sophistication of the evasion is notable. Ships are renamed, flags changed, and ownership restructured with enough speed that a static sanctions list becomes inadequate within weeks of publication.

Real-time screening APIs that pull live SDN data — rather than cached weekly snapshots — are becoming table stakes for maritime, energy, and commodity trading compliance teams.

From OFAC's Website to Your Compliance Workflow

For most compliance teams, the challenge isn't awareness — it's operationalization. The OFAC SDN list is publicly available at ofac.treasury.gov, but converting it into a real-time screening workflow requires:

  1. Continuous ingestion of OFAC list updates (SDN, Consolidated, non-SDN lists)
  2. Fuzzy name matching for transliterated names, aliases, and spelling variants
  3. Vessel/IMO number screening for maritime-adjacent businesses
  4. Beneficial ownership traversal to catch entities two or three hops removed from SDN targets
  5. Audit trails for every screening result — critical in any OFAC enforcement defense

Building this in-house is expensive and brittle. APIs like SanctionShield AI handle the full pipeline, including real-time list updates, multi-entity screening, and structured audit log outputs.

A Quick Python Screening Example

Here's how a compliance team can add OFAC screening to an existing onboarding workflow using SanctionShield AI:

import requests
 
API_KEY = "YOUR_API_KEY"
 
def screen_counterparty(entity_name: str, country: str = None) -> dict:
    """Screen a counterparty against OFAC SDN and consolidated lists."""
    response = requests.post(
        "https://apivult.com/sanctionshield/screen",
        headers={
            "X-RapidAPI-Key": API_KEY,
            "Content-Type": "application/json"
        },
        json={
            "entity_name": entity_name,
            "country": country,
            "lists": ["SDN", "CONSOLIDATED", "NON_SDN"],
            "fuzzy_match": True,
            "match_threshold": 0.85
        }
    )
    result = response.json()
    return result
 
# Screen a new vendor before onboarding
vendor = "Nikita Kovalevskij Trading LLC"
result = screen_counterparty(vendor, country="FI")
 
if result["match_found"]:
    print(f"BLOCKED: {vendor} — SDN match detected")
    print(f"Match score: {result['match_score']}")
    print(f"SDN entry: {result['matched_entity']}")
else:
    print(f"CLEAR: {vendor} passed sanctions screening")

The API returns match scores, matched SDN entry details, and the specific list on which the match was found — giving compliance teams the structured evidence they need for audit defense.

What Compliance Teams Should Do Now

Given the April 2026 SDN update and the ongoing 1,300-designation pace, compliance teams should:

  1. Audit your screening cadence: If you're running batch screening less than daily, calculate your exposure window and escalate internally
  2. Implement retroactive screening: For counterparties onboarded before the latest updates, run a back-screening pass
  3. Enable vessel screening: If your business touches maritime, add IMO number screening to your workflow
  4. Test your fuzzy matching: Run your existing customer list against recent SDN additions to validate your matching engine's recall rate
  5. Document everything: OFAC civil enforcement cases increasingly turn on the quality of the compliance program documentation, not just the outcome

The April 2026 SDN update is a reminder that sanctions compliance is not a one-time checkbox — it's a continuous operational function. As OFAC's pace accelerates, automation is the only scalable answer.

Sources