Skip to main content
GET
Analytics
Aggregate analytics over tracked wallets for a period. Four modes cover different questions, which tokens are most traded, which wallets perform best, what the win rate looks like, and how volume trends over time. Use it to build dashboards and leaderboards, for example a most traded tokens this week widget or a top performers table.
Choose the view with mode. All modes share the same wrapper (mode, blockchain, type, period, currency) and differ in the data they return. Set the window with period, one of 6h, 1d, 7d or 30d.

Query Parameters

string
required
Chain. One of solana, bnb, base, eth.
string
required
Wallet category kol, smart or whale.
string
required
Analytics view. One of most_traded, top_performers, win_rate, volume_trend.
string
default:"7d"
Aggregation window, one of 6h, 1d, 7d or 30d.
integer
Maximum number of items to return, for list modes.
string
required
Your API key. Alternatively pass it as an Authorization Bearer header.

Usage Example

Response

All modes return the same wrapper. The list modes (most_traded, top_performers) put their items in a data array. win_rate returns summary fields directly. The sections below describe each mode.
boolean
True on success.
object

most_traded item

integer
Rank in the list.
string
Token mint.
string
Token name.
integer
Number of tracked wallets that traded the token.
number
Total volume (native).
number
Total bought (native).
number
Total sold (native).
number
Buy minus sell (native).
number
Buy share of volume.
string
Native currency.
string
When the first tracked buy happened.

top_performers item

object
Wallet profile.
object
Period statistics for the wallet (period, currency, total_buy, total_buy_usd, total_sell, total_sell_usd, total_volume, total_volume_usd, realized_pnl, realized_pnl_usd and related fields).

win_rate fields

For win_rate the wrapper carries the summary directly instead of a data array.
integer
Total wallets considered.
integer
Wallets that traded in the period.
integer
Winning closed positions.
integer
Total closed positions.
number
Win rate as a percentage.
object
Profit buckets (above_500, above_100_to_500, above_zero_to_100, below_zero).

volume_trend

For volume_trend the data array holds time bucketed volume points over the period.

Errors