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 Token Holders Timeseries

Ethereum Logo

Looking for token holders timeseries on EVM?

Access historical token holder statistics on EVM using our API.

Explore EVM API
GEThttps://solana-gateway.moralis.io/token/:network/holders/:address/historical
PATH PARAMS
networkstringrequired
The network to query
addressstringrequired
The address to query
QUERY PARAMS
cursorstring
The cursor to the next page
timeFramestringrequired
The timeframe
fromDatestringrequired
The starting date (format in seconds or datestring accepted by momentjs)
toDatestringrequired
The ending date (format in seconds or datestring accepted by momentjs)
limitnumber
The limit per page depending on the plan
Responses
200
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/historical?timeFrame=10min&fromDate=2025-09-20T01%3A00%3A00Z&toDate=2025-09-20T02%3A00%3A00Z&limit=5' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"cursor": "",
"result": {
"timestamp": "2025-02-25T00:00:00Z",
"totalHolders": 2000,
"netHolderChange": 50,
"holderPercentChange": 2.5
},
"page": ""
}