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 stats

GEThttps://deep-index.moralis.io/api/v2.2/erc20/:address/stats

Get the total number of transfers for a given ERC20. For more detailed tokens stats we recommended to use getTokenAnalytics or getMultipleTokenAnalytics. For pair stats, we recommend to use getPairStats.

Beta - Early Launch Notice
PATH PARAMS
addressstringrequired
The address of the erc20 token
QUERY PARAMS
chainstring
The chain to query
Responses
200Returns the stats for the erc20 token.
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/stats?chain=eth' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"transfers": {
"total": "1000"
}
}