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

Get ERC20 Token Holder Stats

Solana Logo

Looking for token holder stats on Solana?

Access token holder statistics on Solana using our API.

Explore Solana API
GEThttps://deep-index.moralis.io/api/v2.2/erc20/:address/holders

Get token holder summary

PATH PARAMS
addressstringrequired
The token contract address
QUERY PARAMS
chainstring
The chain to query
Responses
200Returns token holder summary
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/erc20/0x6982508145454ce325ddbe47a25d4ec3d2311933/holders?chain=eth' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"totalHolders": 107777,
"holdersByAcquisition": {
"swap": 378279,
"transfer": 816041,
"airdrop": 12899
},
"holderChange": {
"5min": {
"change": 1,
"changePercent": 5
},
"1h": {
"change": 9,
"changePercent": 0.0084
},
"6h": {
"change": 71,
"changePercent": 0.066
},
"24h": {
"change": 291,
"changePercent": 0.27
},
"3d": {
"change": 503,
"changePercent": 0.47
},
"7d": {
"change": 981,
"changePercent": 0.91
},
"30d": {
"change": 3630,
"changePercent": 3.4
}
},
"holderSupply": {
"top10": {
"supply": 67058.61,
"supplyPercent": 52
},
"top25": {
"supply": 81873.72,
"supplyPercent": 63
},
"top50": {
"supply": 90468.6,
"supplyPercent": 70
},
"top100": {
"supply": 97659.36,
"supplyPercent": 76
},
"top250": {
"supply": 106577.03,
"supplyPercent": 83
},
"top500": {
"supply": 112637.5,
"supplyPercent": 87
}
}
}