# EVM Wallet Risk Screener

> EVM Wallet Risk Screener is a paid API for AI agents from x402.botsmith.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Screens an EVM wallet address for OFAC sanctions, scam flags, funding origin, and wallet age, returning a 0-100 risk score with transparent reasons

## Facts

- Endpoint: GET https://x402.botsmith.dev/wallet-risk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-wallet-risk-screener-6a0758cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lj2zbwjXX1kNFPh-AUUs4

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 evm-wallet-risk-screener-6a0758cc
```

Example prompt: Before I send payment, can you screen the wallet 0xAbC1234567890AbC1234567890AbC1234567890Ab on the base chain — check if it's sanctioned, flagged as a scam, and give me the risk score and reasons?

## When to prefer this

Use this endpoint when you need a fast, transparent, multi-signal risk assessment of an EVM wallet before transacting — especially when you need OFAC SDN sanctions checking combined with scam reputation flags and funding origin in a single call. Prefer this over manual explorer lookups when you need a normalized 0-100 risk score with explicit reasons rather than raw data. Covers Base, Ethereum, and Optimism chains.

## Known failure modes

- Invalid address format (not a 0x + 40 hex chars) returns validation error
- Unsupported chain value returns enum validation error
- Address has no on-chain history on the specified chain — flags field returns null
- OFAC or explorer data source temporarily unavailable may reduce completeness of results
- Payment of $0.05 USDC required per call via x402 protocol; missing payment returns 402

## How this service works

Wallet Risk Screening ($0.05/call): Screen an EVM counterparty before you transact: OFAC SDN sanctions check (address AND its first funder), explorer scam/reputation flags, wallet age, funding origin, and a 0-100 risk score with transparent reasons. Chains: base, ethereum, optimism. Keyless public sources; not legal advice.

## Output

Returns a structured JSON object with: the queried address and chain, OFAC sanctions check result (for both the address and its first funder), explorer-sourced flags (isContract, isScamFlagged, reputation label, ENS name), origin data (wallet age in days, first seen timestamp, first TX hash, funded-by address), and a risk object containing a 0-100 integer score, a categorical level (low/medium/high/critical), and an array of human-readable reasons explaining the score.

## 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",
      "chain"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum",
        "optimism"
       ],
       "type": "string",
       "default": "base",
       "description": "Chain for history/flag lookups (sanctions list is chain-agnostic)"
      },
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "EVM wallet or contract address to screen"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "address",
      "chain",
      "sanctions",
      "flags",
      "origin",
      "risk"
     ],
     "properties": {
      "risk": {
       "type": "object",
       "required": [
        "score",
        "level",
        "reasons"
       ],
       "properties": {
        "level": {
         "enum": [
          "low",
          "medium",
          "high",
          "critical"
         ],
         "type": "string"
        },
        "score": {
         "type": "integer",
         "maximum": 9007199254740991,
         "minimum": -9007199254740991,
         "description": "0 (clean) to 100 (sanctioned)"
        },
        "reasons": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       },
       "additionalProperties": false
      },
      "chain": {
       "type": "string"
      },
      "flags": {
       "anyOf": [
        {
         "type": "object",
         "required": [
          "isContract",
          "isScamFlagged",
          "reputation",
          "label",
          "ensName"
         ],
         "properties": {
          "label": {
           "anyOf": [
            {
             "type": "string"
            },
            {
             "type": "null"
            }
           ],
           "description": "Explorer-known name for
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-wallet-risk-screener-6a0758cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.botsmith.dev](https://www.zero.xyz/host/x402.botsmith.dev/llms.txt)
