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 Volume Stats By Chain Mainnet Only Premium Endpoint

💡Premium Endpoint

To use this API, you will need an API key associated with a Moralis account on the Pro plan or higher.

GEThttps://deep-index.moralis.io/api/v2.2/volume/chains

Returns volume statistics, active wallets, and total transactions for supported blockchain networks

Responses
200Returns volume statistics for all supported chains
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/volume/chains' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"chains": [
{
"chainId": "0x1",
"totalVolume": {
"5m": 1690971.708286464,
"1h": 46146546.893509656,
"6h": 325726471.73284143,
"24h": 2296130181.8957353
},
"activeWallets": {
"5m": 416,
"1h": 4860,
"6h": 40954,
"24h": 193324
},
"totalTransactions": {
"5m": 617,
"1h": 5913,
"6h": 50554,
"24h": 240210
}
}
]
}