# Wallet Sanctions Check

> Wallet Sanctions Check is a paid API for AI agents from wallet-sanctions.use.x402atlas.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether an EVM or Solana wallet address appears on official sanctions lists and returns a verdict with recommended action.

## Facts

- Endpoint: GET https://wallet-sanctions.use.x402atlas.com/check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-sanctions-check-e751a00a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2fnidZR9cgzKkXBmCBZ0V

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-sanctions-check-e751a00a
```

Example prompt: Before I send any funds, can you check if the wallet address 0x1234567890abcdef1234567890abcdef12345678 appears on any sanctions lists and tell me whether I should block the transaction?

## When to prefer this

Use this endpoint when you need a fast, pay-per-call sanctions compliance check for a single EVM or Solana wallet address before executing a transaction, onboarding a user, or fulfilling a payment. It is ideal for agents that need lightweight AML/OFAC screening without a full compliance subscription. Prefer this over broader risk-scoring services when a binary sanctioned/not-listed verdict with recommended action is sufficient.

## Known failure modes

- Missing or invalid address parameter returns a 400-level error
- Address string outside valid length range (32-44 chars) rejected
- Unrecognized address format (neither EVM nor Solana) may return an error
- Upstream sanctions list temporarily unavailable may cause 5xx error
- Payment required (402) if x402 payment header not provided or insufficient
- Cached result may be slightly stale for very recent sanctions designations

## How this service works

Wallet sanctions check for a validated EVM or Solana address. Returns a direct verdict, recommended action, match evidence, source lists, and an explicit AML-scope caveat.

## Output

Returns a verdict ('sanctioned' or 'not_listed'), a boolean is_sanctioned flag, the detected address format (evm or solana), a recommended_action ('block_and_review' or 'no_exact_match'), a human-readable summary with scope caveats, match evidence (name, sanctioned_at, listed_blockchain) if positive, the sanctions lists checked, a checked_at timestamp, whether the result was cached, and any limitations to be aware of.

## 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",
       "maxLength": 44,
       "minLength": 32,
       "description": "A 20-byte EVM hex address (0x...) or case-sensitive 32-byte Solana base58 public key. Address family is detected automatically."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "address",
      "address_format",
      "verdict",
      "is_sanctioned",
      "recommended_action",
      "summary",
      "match",
      "checked_at",
      "cached",
      "source",
      "limitations"
     ],
     "properties": {
      "match": {
       "type": [
        "object",
        "null"
       ],
       "properties": {
        "name": {
         "type": "string"
        },
        "sanctioned_at": {
         "type": "string",
         "format": "date-time"
        },
        "listed_blockchain": {
         "type": "string"
        }
       },
       "description": "Evidence for a positive exact match; null when verdict is not_listed."
      },
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "object",
       "required": [
        "check_type",
        "lists"
       ],
       "properties": {
        "lists": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "check_type": {
         "type": "string"
        }
       }
      },
      "address": {
       "type": "string",
       "description": "Validated canonical address."
      },
      "summary": {
       "type": "string",
       "description": "Human-readable interpretation with the scope caveat included."
      },
      "verdict": {
       "enum": [
        "sanctioned",
        "not_listed"
       ],
       "type": "string"
      },
      "checked_at": {
       "type": "string",
       "format": "date-time",
       "description": "W
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "match": null,
  "cached": false,
  "source": {
   "lists": [
    "US OFAC",
    "UK OFSI",
    "South Korea MOFA",
    "Israel NBCTF"
   ],
   "check_type": "exact_address_sanctions"
  },
  "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "summary": "No exact sanctions-list match was found. This is not a full AML clearance.",
  "verdict": "not_listed",
  "checked_at": "2026-07-21T12:00:00Z",
  "limitations": [
   "Exact-address sanctions match only; this does not assess indirect exposure, wallet clustering, source of funds, identity, or overall AML risk."
  ],
  "is_sanctioned": false,
  "address_format": "evm",
  "recommended_action": "no_exact_match"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-sanctions-check-e751a00a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet-sanctions.use.x402atlas.com](https://www.zero.xyz/host/wallet-sanctions.use.x402atlas.com/llms.txt)
