Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clicker.xyz/llms.txt

Use this file to discover all available pages before exploring further.

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?: {               // Per-chain breakdown (optional, partial record)
      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
isFollowedByUser
boolean