# Crypto Address Risk Screening

> Crypto Address Risk Screening is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Screens a blockchain wallet address for sanctions, flags, and risk indicators across major EVM chains

## Facts

- Endpoint: GET https://store.agentexchange.work/crypto/address-risk
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-address-risk-screening-1dcbf1d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zRGzILq_vYX2qxLwSdwd4

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 crypto-address-risk-screening-1dcbf1d7
```

Example prompt: Before I send funds, can you screen the Ethereum wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 for sanctions or any risk flags?

## When to prefer this

Use this endpoint when you need a fast, per-call blockchain address risk/AML screening across major EVM chains (Ethereum, Base, BSC, Polygon, Arbitrum, Optimism, Avalanche) without signing up for an API key. Prefer over full KYC platforms when you only need address-level verdicts, not entity-level compliance reports. Ideal for AI agents performing pre-payment due diligence or DeFi transaction screening.

## Known failure modes

- Missing or invalid address format returns a 400/validation error
- Unsupported chain identifier returns an error
- Address with no on-chain history may return CLEAR with zero risk but no guarantee of safety
- Payment failure via x402 (insufficient USDC balance) returns 402 Payment Required
- Rate limits or upstream data provider outage may return 503

## How this service works

Machine-payable data APIs for AI agents across web search, on-chain reads, trading data, market judgment, and AI visibility. The canonical x402 catalog currently exposes 85 paid routes. Pay per call in USDC via x402 on Base. No API keys, no signup.

## Output

Returns a JSON object with the wallet address, chain, a CLEAR/FLAGGED verdict string, boolean sanctioned status, integer risk_count, and an array of specific risk flags (e.g. hacker, scammer, mixer) detected for that 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "ethereum|base|bsc|polygon|arbitrum|optimism|avalanche (default ethereum)"
      },
      "address": {
       "type": "string",
       "description": "Wallet address to screen (0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "flags": {
       "type": "array"
      },
      "verdict": {
       "type": "string"
      },
      "risk_count": {
       "type": "number"
      },
      "sanctioned": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "ethereum",
  "flags": [],
  "address": "0x...",
  "verdict": "CLEAR",
  "risk_count": 0,
  "sanctioned": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-address-risk-screening-1dcbf1d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
