curl --request GET \
--url https://data.solanatracker.io/tokens/{tokenAddress}/holders/paginated \
--header 'x-api-key: <api-key>'{
"total": 629520,
"accounts": [
{
"wallet": "2RH6rUTPBJ9rUDPpuV9b8z1YL56k1tYU6Uk5ZoaEFFSK",
"account": "HkykUVWTctptXZmRTWearMsH4SaQNmE4Ku3tMJe5v2mH",
"amount": 800000026.912776,
"value": {
"quote": 4794089882.482378,
"usd": 4794089882.482378
},
"percentage": 80.00006034693021
},
{
"wallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"account": "7DaumTmUaK3xcpd8XJXAjUzDrCqPuj3S1Sc2cbootBUN",
"amount": 29442390.303223,
"value": {
"quote": 176436825.90046737,
"usd": 176436825.90046737
},
"percentage": 2.944241152222513
}
],
"cursor": "Cd3HX8ToTVeJYTN4dB6BuRvnvmTFeXHJ3E4EAfR9s8QA",
"hasMore": true,
"limit": 10
}Gets token holders with cursor-based pagination support. Returns holders sorted by amount in descending order.
curl --request GET \
--url https://data.solanatracker.io/tokens/{tokenAddress}/holders/paginated \
--header 'x-api-key: <api-key>'{
"total": 629520,
"accounts": [
{
"wallet": "2RH6rUTPBJ9rUDPpuV9b8z1YL56k1tYU6Uk5ZoaEFFSK",
"account": "HkykUVWTctptXZmRTWearMsH4SaQNmE4Ku3tMJe5v2mH",
"amount": 800000026.912776,
"value": {
"quote": 4794089882.482378,
"usd": 4794089882.482378
},
"percentage": 80.00006034693021
},
{
"wallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"account": "7DaumTmUaK3xcpd8XJXAjUzDrCqPuj3S1Sc2cbootBUN",
"amount": 29442390.303223,
"value": {
"quote": 176436825.90046737,
"usd": 176436825.90046737
},
"percentage": 2.944241152222513
}
],
"cursor": "Cd3HX8ToTVeJYTN4dB6BuRvnvmTFeXHJ3E4EAfR9s8QA",
"hasMore": true,
"limit": 10
}API Key for authentication
Solana token mint address
Number of holders to return per page (min: 1, max: 5000, default: 1000)
1 <= x <= 5000Cursor for pagination. Use the cursor from the previous response to get the next page.
Successful response
Total number of token holders
Array of holder accounts for current page
Show child attributes
Cursor for retrieving the next page. Null if no more pages.
Indicates if there are more pages available
Number of items requested per page
Was this page helpful?