# OFAC Sanctions Address Screener

> OFAC Sanctions Address Screener is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Checks whether an EVM wallet address appears on the US OFAC sanctioned-address list before a transaction is executed.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/compliance/screen
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-sanctions-address-screener-38c130dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OJ6gjRVjgdE-Occ2CGwAq

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 ofac-sanctions-address-screener-38c130dc -d '<json body>'
```

Example prompt: Before I send this payment, can you run an OFAC sanctions check on the wallet address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE to make sure it's not on any US sanctions list?

## When to prefer this

Use this endpoint when you need a fast, pre-transaction OFAC sanctions check on a specific EVM wallet address and want a simple pass/fail compliance signal without building your own OFAC list integration. Ideal for agents automating on-chain payments on Base or other EVM chains that must satisfy US regulatory compliance requirements.

## Known failure modes

- Invalid or malformed 0x address returns a validation error
- Address not in EVM format may be rejected
- Service unavailable on Railway deployment returns 5xx
- OFAC list data may have a refresh lag, missing very recently added addresses
- Payment failure (insufficient USDC) blocks the call

## How this service works

OFAC sanctions screening: is this address on the US OFAC sanctioned-address list? Send { address }. Every agent moving money legally needs this pre-transaction check.

## Output

Returns whether the given EVM address is present on the OFAC sanctioned-address list — a match/no-match status indicating whether the address is legally restricted from receiving funds under US law.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string",
   "description": "0x EVM address to screen"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sanctions-address-screener-38c130dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
