Skip to main content
GET
Wallet - Leaderboard

Wallet leaderboard by total asset value.

  • limit supports 1 to 100, and offset supports up to 10,000.
  • from_value defaults to 100,000 and cannot go below that threshold.
  • to_value, when provided, must be greater than from_value.
  • Results are sorted by total asset value in descending order.
  • This endpoint consumes 25 CU per request.
  • Build whale leaderboards and wallet-rich-list style screens.
  • Slice wallet rankings by value bands for cohort analysis.
  • Find large wallets worth investigating further with PnL or funding endpoints.
  • Set x-chain=solana.
  • Use from_value and optional to_value to define the wallet band.
  • Page through the leaderboard with offset and limit.
  • Use the leaderboard as a discovery layer, then drill into individual wallets with net-worth and PnL endpoints.
  • Keep value bands explicit so comparisons stay meaningful across screens.
  • Solana only.
  • from_value has a hard floor of 100,000.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

Solana network only.

Available options:
solana

Query Parameters

from_value
number<float>
default:100000

Minimum total value filter. Defaults to 100,000 and must be greater than or equal to 100,000.

Required range: x >= 100000
to_value
number<float>

Maximum total value filter. Must be greater than or equal to 100,000 and greater than from_value.

Required range: x >= 100000
limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0

Make sure offset <= 10000

Required range: 0 <= x <= 10000

Response

JSON object containing the wallet leaderboard ranked by total asset value

success
boolean
required

Whether the request succeeded.

data
object[]
required

Ranked wallets for the requested leaderboard scope.