# EMC2 AI Smart Money Wallet Leaderboard

> EMC2 AI Smart Money Wallet Leaderboard is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.850000/call, status unknown (last checked 2026-09-15).

Returns a ranked leaderboard of top trader wallets with buy/sell flow analysis and accumulation pattern data from on-chain DEX activity.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/smart-money/raw
- Price: $0.850000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-b450a89c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s9fcpWpiN3LRrj0Wl1uKh

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 emc2ai-io-b450a89c -d '<json body>'
```

Example prompt: Show me the leaderboard of top smart money wallets on Ethereum right now — I want to see their buy and sell flows and which ones are accumulating.

## When to prefer this

Use this endpoint when you need a ranked, leaderboard-style view of the best-performing on-chain traders with buy/sell flow breakdown. Prefer this over token-centric endpoints when the focus is on which wallets (not which tokens) are moving capital. It is distinct from the capital-intensive traders endpoint in that it ranks by accumulation patterns and flow balance, not just raw trade size.

## Known failure modes

- Unsupported chain specified returns error or empty result
- Missing required chain or filter parameter causes 400-style error
- Payment of 0.85 USDC not fulfilled results in 402 Payment Required
- Bitquery upstream timeout returns partial or no data
- Invalid wallet address filter returns empty leaderboard

## How this service works

Leaderboard of top trader wallets with buy/sell flow analysis and accumulation patterns.

## Output

A ranked list of top trader wallet addresses with associated buy flow, sell flow, net capital movement, and accumulation pattern signals sourced from on-chain DEX data via Bitquery.

## 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/emc2ai-io-b450a89c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emc2ai.io](https://www.zero.xyz/host/emc2ai.io/llms.txt)
