Skip to main content
GET
/
top-traders
/
all
Get Top Traders (All Tokens)
curl --request GET \
  --url https://data.solanatracker.io/top-traders/all \
  --header 'x-api-key: <api-key>'
{
  "wallets": [
    {
      "wallet": "<string>",
      "summary": {
        "realized": 123,
        "unrealized": 123,
        "total": 123,
        "totalInvested": 123,
        "averageBuyAmount": 123,
        "totalWins": 123,
        "totalLosses": 123,
        "winPercentage": 123,
        "lossPercentage": 123
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key for authentication

Query Parameters

expandPnl
boolean

Include detailed PnL data for each token if true

sortBy
enum<string>

Sort results by metric

Available options:
total,
winPercentage

Response

200 - application/json

Successful response

wallets
object[]
⌘I