Skip to main content
GET
/
top-traders
/
all
/
{page}
SDK
import { Client } from '@solana-tracker/data-api';

const client = new Client({ apiKey: 'YOUR_API_KEY' });

const data = await client.getTopTraders(2);
{
  "wallets": [
    {
      "wallet": "<string>",
      "summary": {
        "realized": 123,
        "unrealized": 123,
        "total": 123,
        "totalInvested": 123,
        "averageBuyAmount": 123,
        "totalWins": 123,
        "totalLosses": 123,
        "winPercentage": 123,
        "lossPercentage": 123
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

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

SDK Example

import { Client } from '@solana-tracker/data-api';

const client = new Client({ apiKey: 'YOUR_API_KEY' });

const data = await client.getTopTraders(2);

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

page
integer
required

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[]