# Suverse Smart Money Wallet Leaderboard

> Suverse Smart Money Wallet Leaderboard is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status healthy (last checked 2026-09-16, last successful call 2026-09-11).

Returns a ranked leaderboard of top 'smart money' crypto wallets on Base or Solana, scored by skill, 90-day PnL, win rate, profit factor, and holding time.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/smart-money-top-wallets
- Price: $0.05/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-16
- Last successful call: 2026-09-11
- Success rate: 100% of calls made through Zero
- Rating: 3.0 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-smart-money-wallet-leaderboard-a2d5a889
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DwRzqfZhQqsuSmCBqlioK

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 suverse-smart-money-wallet-leaderboard-a2d5a889 -d '<json body>'
```

Example prompt: Pull up the smart money wallet leaderboard for Solana — I want to see the top wallets ranked by skill score along with their win rates, 90-day PnL, and profit factor.

## When to prefer this

Choose this endpoint when you need a curated, pre-scored leaderboard of top on-chain wallets on Base or Solana, complete with proprietary skill scores, win rates, and PnL metrics — rather than building your own wallet analytics pipeline from raw chain data. Ideal for copy-trading research, alpha discovery, and wallet watchlist construction.

## Known failure modes

- Invalid or unsupported chain value returns an error
- Missing required chain parameter causes request failure
- Payment failure (x402) if USDC balance is insufficient
- Empty result set if leaderboard data is temporarily unavailable
- Stale data if in-house scoring pipeline has not refreshed recently

## How this service works

Smart-money wallet leaderboard from our tracker: eligible wallets ranked by skill score then 90d PnL. address, tier, score, win rate, 90d/realized PnL, profit factor, holding time. chain=base|solana. In-house scoring data.

## Output

A ranked list of top smart-money wallets, each entry including wallet address, tier classification, proprietary skill score, win rate, 90-day PnL, realized PnL, profit factor, and average holding time. Results are filtered by the specified chain (Base or Solana).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-smart-money-wallet-leaderboard-a2d5a889/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
