Skip to main content
Version: 2.2

Get ERC20 token stats

Don't have an API key yet?

Start using this API for your project today.

Get your free API key
GEThttps://deep-index.moralis.io/api/v2.2/erc20/:address/stats

Get the stats for a erc20 token

Beta - Early Launch Notice
PATH PARAMS
addressstringrequired
The address of the erc20 token
QUERY PARAMS
chainstring
The chain to query
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = await Moralis.EvmApi.token.getTokenStats({
"chain": "0x1",
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7"
});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"transfers": {
"total": "1000"
}
}