# Einstein AI Smart Money Wallet Identifier

> Einstein AI Smart Money Wallet Identifier is a paid API for AI agents from api.relai.fi, paid per call via x402, $1.000000/call, status unknown (last checked 2026-09-13).

Identifies wallets with consistent profitable trading patterns across major EVM-compatible blockchains

## Facts

- Endpoint: POST https://api.relai.fi/relay/1769629274857/x402/bitquery/smartmoney
- Price: $1.000000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/einstein-ai-smart-money-wallet-identifier-77f1fcc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P09HufY5d2RbEJAqApaGx

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 einstein-ai-smart-money-wallet-identifier-77f1fcc5 -d '<json body>'
```

Example prompt: Show me the top 20 smart money wallets with the most consistently profitable trading patterns on Ethereum over the last 7 days.

## When to prefer this

Choose this endpoint when you need to identify consistently profitable on-chain traders across major EVM chains (Ethereum, Base, BSC, Arbitrum, Polygon) using Bitquery-powered analytics. Prefer this over generic blockchain explorers when you need ranked smart money signals rather than raw transaction data.

## Known failure modes

- Unsupported chain specified returns validation error
- Invalid timeperiod enum value causes bad request
- Limit exceeding 500 may be rejected or capped
- Network-level timeout if Bitquery data source is slow
- Empty result set if no wallets meet profitability criteria in the given timeframe
- Payment failure ($1 USDC x402) results in 402 response with no data

## How this service works

Identify wallets with consistent profitable trading patterns. Supported chains: ethereum, base, bsc, arbitrum, polygon. Default chain: base. Required params: none (chain/limit/timeperiod are optional and defaulted).

## Output

A ranked list of wallet addresses identified as smart money traders, showing consistent profitable trading activity over the selected time period on the specified blockchain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/einstein-ai-smart-money-wallet-identifier-77f1fcc5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
