Skip to main content
GET
/
v2
/
pnl
/
leaderboard
/
kols
/
period
SDK
import { Client } from '@solana-tracker/data-api';

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

const data = await client.getPnlV2KOLPeriodLeaderboard({ period: '7d', limit: 50 });
curl --request GET \
--url https://data.solanatracker.io/v2/pnl/leaderboard/kols/period \
--header 'x-api-key: <api-key>'
import requests

url = "https://data.solanatracker.io/v2/pnl/leaderboard/kols/period"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://data.solanatracker.io/v2/pnl/leaderboard/kols/period', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://data.solanatracker.io/v2/pnl/leaderboard/kols/period",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://data.solanatracker.io/v2/pnl/leaderboard/kols/period"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://data.solanatracker.io/v2/pnl/leaderboard/kols/period")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://data.solanatracker.io/v2/pnl/leaderboard/kols/period")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "traders": [
    {
      "wallet": "515vh1DrPuwMATt9Zoq9kP4sJL9fyojA1dHJu4DQpNRp",
      "period": {
        "realized": 191701.24,
        "volume": 492805.25,
        "tradingDays": 8
      },
      "ending": {
        "pnl": {
          "realized": 29933166.94,
          "unrealized": -258.98,
          "total": 29932907.96
        }
      },
      "lastSnapshotDate": "2026-04-19",
      "identity": {
        "name": "crypto cir...",
        "twitter": null,
        "avatar": "https://kol-avatar.solanatracker.io/515vh1DrPuwMATt9Zoq9kP4sJL9fyojA1dHJu4DQpNRp"
      }
    },
    {
      "wallet": "AuPp4YTMTyqxYXQnHc5KUc6pUuCSsHQpBJhgnD45yqrf",
      "period": {
        "realized": 133553.83,
        "volume": 345418.1,
        "tradingDays": 8
      },
      "ending": {
        "pnl": {
          "realized": 877222.21,
          "unrealized": -9818.18,
          "total": 867404.04
        }
      },
      "lastSnapshotDate": "2026-04-19",
      "identity": {
        "name": null,
        "twitter": null,
        "avatar": "https://kol-avatar.solanatracker.io/AuPp4YTMTyqxYXQnHc5KUc6pUuCSsHQpBJhgnD45yqrf"
      }
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "eyJzb3J0VmFsdWUiOjEzMzU1My44MzMyODczMjIxNywidGllQnJlYWtlciI6IkF1UHA0WVRNVHlxeFlYUW5IYzVLVWM2cFV1Q1NzSFFwQkpoZ25ENDV5cXJmIn0=",
    "count": 2,
    "total": 2
  }
}
{
"error": "<string>"
}
{
"error": "<string>"
}

SDK Example

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

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

const data = await client.getPnlV2KOLPeriodLeaderboard({ period: '7d', limit: 50 });

Authorizations

x-api-key
string
header
required

API Key for authentication

Query Parameters

sort
enum<string>
default:realized

Field to rank by.

Available options:
realized,
volume,
days,
ending_total
direction
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc
limit
integer
default:100

Number of results per page.

cursor
string

Opaque pagination cursor returned from the previous page's pagination.nextCursor.

period
enum<string>
default:30d

Time period shorthand. Ignored if start/end are provided.

Available options:
1d,
7d,
14d,
30d,
90d,
all
start
string<date>

Start date (YYYY-MM-DD). Overrides period.

end
string<date>

End date (YYYY-MM-DD). Overrides period.

Response

Successful response.

traders
object[]
pagination
object

Cursor-based pagination metadata.