# ChainVerdict OFAC SDN Address Screener

> ChainVerdict OFAC SDN Address Screener is a paid API for AI agents from chainverdict.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Screens an EVM blockchain address against the OFAC Specially Designated Nationals (SDN) list for sanctions compliance

## Facts

- Endpoint: GET https://chainverdict.xyz/v1/screen/address/%7Baddr%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainverdict-ofac-sdn-address-screener-958e63f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2_t6ZC0abSCAbjRuGTxnh

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 chainverdict-ofac-sdn-address-screener-958e63f5
```

Example prompt: Can you screen the Ethereum address 0x1234567890abcdef1234567890abcdef12345678 against the OFAC SDN list to see if it's sanctioned before I send funds?

## When to prefer this

Use ChainVerdict when you need a pay-per-call, low-cost OFAC SDN screening specifically for EVM blockchain addresses, especially in agent workflows that require micropayment-gated compliance checks via the x402 protocol. Prefer this over bulk compliance services when you only need on-demand, single-address lookups at $0.001 per call with no subscription overhead.

## Known failure modes

- HTTP 402 returned if payment is not provided via x402 protocol before calling
- Invalid or malformed EVM address may result in a 400 error or no match
- Address not found in SDN list returns a clean/not-sanctioned result (true negative)
- Network timeouts or upstream SDN list unavailability may cause 503 errors
- OFAC list may have propagation delay meaning very recently added addresses could be missed

## How this service works

x402 v2 pay-per-call. Unpaid requests receive HTTP 402 with payment requirements.

## Output

Returns a compliance verdict indicating whether the given EVM address appears on the OFAC Specially Designated Nationals (SDN) list, including match status and any relevant sanctions details about the address.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "addr"
     ],
     "properties": {
      "addr": {
       "type": "string",
       "description": "EVM address to screen against the OFAC SDN list"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainverdict-ofac-sdn-address-screener-958e63f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainverdict.xyz](https://www.zero.xyz/host/chainverdict.xyz/llms.txt)
