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 Token Holder Stats

Ethereum Logo

Looking for token holder stats on EVM?

Access token holder statistics on EVM using our API.

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

Get Solana token holder summary

PATH PARAMS
networkstringrequired
The network to query
addressstringrequired
The token mint address
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/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
{
"totalHolders": 647639,
"holdersByAcquisition": {
"swap": 475836,
"transfer": 156565,
"airdrop": 15238
},
"holderChange": {
"5min": {
"change": 1,
"changePercent": 0.00015
},
"1h": {
"change": -4,
"changePercent": -0.00062
},
"6h": {
"change": -68,
"changePercent": -0.01
},
"24h": {
"change": -294,
"changePercent": -0.045
},
"3d": {
"change": 2961,
"changePercent": 0.46
},
"7d": {
"change": 6624,
"changePercent": 1
},
"30d": {
"change": -69531,
"changePercent": -11
}
},
"holderDistribution": {
"whales": 2,
"sharks": 2,
"dolphins": 4,
"fish": 5,
"octopus": 16,
"crabs": 54,
"shrimps": 647558
}
}