# OFAC Sanctions List Check API

> OFAC Sanctions List Check API is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Checks whether a given crypto address appears on the US OFAC SDN (Specially Designated Nationals) sanctions list before a transaction

## Facts

- Endpoint: GET https://api.x402node.dev/security/sanctioned-check
- Price: $0.006/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-list-check-api-a6648be0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XjaYIdpbfequmrKbKyJIs

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-list-check-api-a6648be0
```

Example prompt: Before I send funds, can you check if the address 0x7f268357A8c2552623316e2562D90e642bB538E5 is on the OFAC sanctions list?

## When to prefer this

Use this endpoint when an AI agent or automated system needs to perform real-time OFAC sanctions screening on a crypto wallet address prior to executing a transaction. This is especially critical for any DeFi, payment, or transfer workflow where regulatory compliance with US Treasury sanctions is required and the agent cannot query live government lists directly.

## Known failure modes

- Invalid or malformed address returns an error or no-match result
- Address format not recognized (e.g. non-standard chain format) may return an error
- Stale SDN list data if the underlying list source is not up to date
- Rate limiting or payment failure resulting in 402 or 429 response
- Network timeout or upstream data source unavailability

## How this service works

Check whether a crypto address appears on the US OFAC sanctions list before transacting - a compliance must-have for agents that LLMs cannot verify against live lists. ofac check, sanctioned address, sanctions screening, compliance check, blacklist address, sdn list Accepts payment on Base or Solana — either network works.

## Output

Returns whether the queried crypto address is flagged on the US OFAC SDN sanctions list, indicating whether the address is sanctioned or clear for transacting, along with any relevant match details.

## Example request

```json
{
 "address": "0x1234567890123456789012345678901234567890"
}
```

## 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": "Address to screen (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sanctions-list-check-api-a6648be0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
