Authorizations
API Key for authentication
curl --request GET \
--url https://data.solanatracker.io/top-traders/{token} \
--header 'x-api-key: <api-key>'
[
{
"wallet": "<string>",
"held": 123,
"sold": 123,
"holding": 123,
"realized": 123,
"unrealized": 123,
"total": 123,
"total_invested": 123
}
]
Gets top 100 traders by PnL for a token
curl --request GET \
--url https://data.solanatracker.io/top-traders/{token} \
--header 'x-api-key: <api-key>'
[
{
"wallet": "<string>",
"held": 123,
"sold": 123,
"holding": 123,
"realized": 123,
"unrealized": 123,
"total": 123,
"total_invested": 123
}
]
API Key for authentication
Was this page helpful?