# OFAC Sanctions Screen for EVM Address

> OFAC Sanctions Screen for EVM Address is a paid API for AI agents from api.x402agentic.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Checks an EVM wallet address against the live OFAC sanctioned-address list and returns an allow or block decision, refreshed weekly.

## Facts

- Endpoint: GET https://api.x402agentic.ai/screen
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-sanctions-screen-for-evm-address-285afbda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wmqFyMZi97xSrozT7E1aT

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-screen-for-evm-address-285afbda
```

Example prompt: Before I send that USDC payment, can you screen the recipient address 0x742d35Cc6634C0532925a3b8D4C9B7e1f3b2a4d8 against the OFAC sanctions list to make sure it's safe to pay?

## When to prefer this

Use this endpoint when you need a real-time OFAC compliance gate before executing a crypto payment — particularly in automated AI agent payment flows on Base USDC where regulatory compliance must be enforced programmatically. Prefer this over generic reputation scores when you need a hard regulatory block decision rather than a soft risk signal.

## Known failure modes

- Invalid or malformed EVM address returns a 400 error
- Address not resolvable or non-EVM format causes rejection
- Temporary unavailability of the upstream OFAC list data may cause degraded results
- Payment failure (x402) if the $0.02 USDC call fee cannot be processed

## How this service works

OFAC sanctions screen on a payee address — allow/block against the live sanctioned-address list, auto-refreshed weekly. Part of x402 Agentic, the payment-trust suite for AI agents on Base USDC.

## Output

Returns an allow or block decision for the queried EVM address, indicating whether it appears on the current OFAC sanctioned-address list. The list is auto-refreshed weekly to ensure compliance decisions reflect the latest sanctions data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "EVM address to screen"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "list": "OFAC",
  "valid": true,
  "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "verdict": "allow",
  "sanctioned": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sanctions-screen-for-evm-address-285afbda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402agentic.ai](https://www.zero.xyz/host/api.x402agentic.ai/llms.txt)
