Skip to main content
A trader on the V2 leaderboard, including their profile, PnL breakdown by chain, and optionally their copytrade stats.

Structure

{
  profile: ProfileExtended,    // Full profile with metrics
  pnl: {
    total: number,             // Combined PnL across selected chains
    perChain: {                // Individual chain PnL breakdown
      base: number,
      solana: number,
      ethereum: number,
      hyperliquid: number
    }
  },
  hasComments: boolean,        // Whether this trader has posted swap comments
  copytrades?: {               // Only present on /v2/leaderboard/copytraded
    count: number,             // Total copytrades of their comments
    distinctActors: number,    // Unique users who copied
    volumeUSD: number          // Total volume from copytrades
  }
}

PnL Calculation

  • pnl.total is calculated by summing pnl.perChain values for the chains requested in the query
  • If no chains parameter is provided, all chains are included
  • All values are 30-day realized PnL in USD
profile
object
required
pnl
object
required
hasComments
boolean
required
copytrades
object