https://api.cdp.coinbase.com/platform/v2/x402).
Discovery: /.well-known/x402 |
agent.json |
OpenAPI spec |
llms.txt
Checks any blockchain wallet address against the OFAC Specially Designated Nationals (SDN) digital currency list. Covers EVM addresses (0x...), Bitcoin (BTC legacy, P2SH, bech32), Solana, Tron (TRX), Ripple (XRP), and other chains. Returns a hit/no-hit verdict with the matched SDN entry details (name, programmes, SDN type) if a match is found.
Used by DeFi trading agents to screen counterparty wallet addresses before on-chain settlement. Pre-settlement OFAC screening is a regulatory requirement for US-connected DeFi protocols under OFAC's 2023 digital asset guidance. Sub-200ms response time. No API key required — pay $0.002 USDC per check via the x402 protocol on Base mainnet.
This endpoint is designed for AI agents. Typical callers include:
{
"address": "0x098b716b8aaf21512996dc57eb0615e2383e2f96",
"hit": true, // true = address found on OFAC SDN list
"sdn_entry": {
"name": "LAZARUS GROUP", // sanctioned entity name
"type": "Entity",
"programs": ["DPRK3"], // OFAC sanctions programme(s)
"aliases": ["Hidden Cobra", ...], // known aliases
"id": "SDN-0000-00000"
},
"list": "OFAC SDN",
"list_updated": "2026-04-15",
"checked_at": "2026-04-30T12:00:00Z",
"disclaimer": "..."
}
GET https://globalapi.dev/sanctions/wallet/0x098b716b8aaf21512996dc57eb0615e2383e2f96 — $0.002 USDC via x402
payment-required header containing base64-encoded payment instructionspayment-signature headerCompatible client libraries: @x402/client (TypeScript), x402-python (Python).