# Wallet AML OFAC Sanctions Screener

> Wallet AML OFAC Sanctions Screener is a paid API for AI agents from wallet-aml-screen.relayhop.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Screens an EVM wallet address against the US Treasury OFAC SDN sanctions list to determine if it is flagged.

## Facts

- Endpoint: GET https://wallet-aml-screen.relayhop.workers.dev/screen
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-aml-ofac-sanctions-screener-41a1f2bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w7h6d46Gvw1qdGaPi9Egm

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 wallet-aml-ofac-sanctions-screener-41a1f2bc
```

Example prompt: Can you check if the wallet address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE is on the OFAC SDN sanctions list before I send funds to it?

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.001 USDC) OFAC SDN sanctions check on a single EVM wallet address before executing a crypto transaction, onboarding a user, or performing compliance due diligence. Prefer this over manual lookups or heavier KYC services when you only need SDN list screening for a blockchain address without full identity verification.

## Known failure modes

- Invalid or malformed wallet address (not 0x + 40 hex chars) returns an error
- Address not found returns a clean/no-match result
- OFAC data source temporarily unavailable returns a service error
- Missing address query parameter returns a bad request error
- Network timeout from the Cloudflare Worker

## How this service works

OFAC SDN sanctions screening for an EVM wallet address. Query: ?address=0x... Source: US Treasury OFAC SDN list (free).

## Output

Returns a sanctions screening result indicating whether the queried EVM wallet address appears on the US Treasury OFAC Specially Designated Nationals (SDN) list, including match status and any relevant flagging details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "address": {
     "in": "query",
     "type": "string",
     "description": "EVM wallet address, 0x + 40 hex"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-aml-ofac-sanctions-screener-41a1f2bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet-aml-screen.relayhop.workers.dev](https://www.zero.xyz/host/wallet-aml-screen.relayhop.workers.dev/llms.txt)
