Catalog/chain-sanctioned-address

Chain

OFAC sanctioned crypto-address screening API

Screen a crypto address against the official US Treasury OFAC SDN digital-currency-address list, returning not just a sanctioned boolean but WHO it belongs to (entity name + SDN entry number), WHICH sanctions program(s) it falls under, and the chain — across every chain OFAC tracks (BTC, ETH, TRX, XMR, USDT, etc.). The authoritative SDN CSV is snapshotted daily and served as instant lookups. Answers 'is this wallet sanctioned by OFAC', 'who does this sanctioned address belong to', 'what program is this address under', 'screen this crypto address for compliance'.

Price$0.04per request
MethodPOST
Route/v1/chain/sanctioned-address
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
chainofacsanctionssdncompliancescreeningamladdress
API URLhttps://x402.hexl.dev/v1/chain/sanctioned-address
Integration docs
Example request
{
  "address": "0x098B716B8Aaf21512996dC57EB0615e2383E2f96"
}
Example response
{
  "address": "0x098B716B8Aaf21512996dC57EB0615e2383E2f96",
  "sanctioned": true,
  "chain": "ETH",
  "entity": "LAZARUS GROUP",
  "entityNumber": "27307",
  "programs": [
    "DPRK3"
  ],
  "checkedAt": "2026-06-03T18:56:32.627Z"
}
Input schema
{
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "examples": [
        "0x098B716B8Aaf21512996dC57EB0615e2383E2f96"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}