Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key
Version: 2.2

Get Top Token Holders

Ethereum Logo

Looking for token holders on EVM?

Access token holders on EVM using our API.

Explore EVM API
GEThttps://solana-gateway.moralis.io/token/:network/:address/top-holders

Get a list of top token holders for a specific Solana token address

PATH PARAMS
networkstringrequired
The network to query
addressstringrequired
The token mint address
QUERY PARAMS
limitnumber
Number of results to return
cursorstring
Cursor for pagination
Responses
API KEY
// Dependencies to install:
// $ npm install node-fetch --save
// add "type": "module" to package.json

import fetch from 'node-fetch';

const options = {
method: 'GET',
headers: {
accept: 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
};

fetch('https://solana-gateway.moralis.io/token/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/top-holders?limit=100', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
{
"cursor": "string",
"page": 1,
"pageSize": 100,
"totalSupply": "9274687279.490104",
"result": [
{
"balance": "656478944294576",
"balanceFormatted": "656478944.294576",
"isContract": "",
"ownerAddress": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"usdValue": "656451182.456500726675536",
"percentageRelativeToTotalSupply": 7.08
}
]
}