Skip to main content
GET
/
tokens
/
{tokenAddress}
/
holders
/
paginated
Get All Token Holders (Paginated)
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
}

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

tokenAddress
string
required

Solana token mint address

Query Parameters

limit
integer
default:1000

Number of holders to return per page (min: 1, max: 5000, default: 1000)

Required range: 1 <= x <= 5000
cursor
string | null

Cursor for pagination. Use the cursor from the previous response to get the next page.

Response

Successful response

total
integer
required

Total number of token holders

accounts
object[]
required

Array of holder accounts for current page

cursor
string | null
required

Cursor for retrieving the next page. Null if no more pages.

hasMore
boolean
required

Indicates if there are more pages available

limit
integer
required

Number of items requested per page