# TokenGuard Sanctions Check

> TokenGuard Sanctions Check is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Checks a crypto wallet address or entity against OFAC SDN and other sanctions lists, returning match details and sanctioned status

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/sanctions
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-sanctions-check-0e9682ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fniFfUQczfOE4M7AYzy58

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tokenguard-sanctions-check-0e9682ae -d '<json body>'
```

Example prompt: Can you check if the Ethereum address 0x098b716b8aaf21512996dc57eb0615e2383e2f96 is on any OFAC sanctions list before I send funds to it?

## When to prefer this

Use this endpoint when you need real-time OFAC SDN sanctions screening for a specific crypto wallet address as part of a DeFi transaction compliance workflow, AML due diligence, or counterparty risk check. Prefer this over generic blockchain explorers when you need structured match data including program names, SDN type, and publication date in a single API call.

## Known failure modes

- Address not found on any list returns sanctioned=false with empty matches array
- Malformed address input may return a validation error
- Network or service downtime may return 5xx errors
- Stale list data if list_published date is outdated
- Rate limiting or payment failure via x402 micropayment protocol

## How this service works

OFAC SDN sanctions screening for a crypto address or a person/company name. Covers all 963 digital-currency addresses OFAC lists across 19 chains (BTC, ETH, TRX, USDT, SOL, XMR and more) plus 19k sanctioned entities and their aliases. Straight from the US Treasury's own list, refreshed daily.

## Output

Returns a JSON object containing the queried address, the sanctions list checked (e.g. OFAC SDN), a boolean sanctioned flag, the match type, match count, and an array of matched entities with their names, associated sanction programs, SDN entity type, and linked crypto addresses across chains.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "enum": [
    "auto",
    "address",
    "name"
   ],
   "type": "string"
  },
  "limit": {
   "type": "integer"
  },
  "query": {
   "type": "string",
   "description": "Crypto address, person or company name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "list": "OFAC SDN",
  "query": "0x098b716b8aaf21512996dc57eb0615e2383e2f96",
  "matches": [
   {
    "name": "LAZARUS GROUP",
    "programs": [
     "DPRK3"
    ],
    "sdn_type": "Entity",
    "crypto_addresses": [
     {
      "chain": "ETH",
      "address": "0x098B716B8Aaf21512996dC57EB0615e2383E2f96"
     }
    ]
   }
  ],
  "match_type": "address",
  "sanctioned": true,
  "match_count": 1,
  "list_published": "07/24/2026"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-sanctions-check-0e9682ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
