Skip to main content
Version: 2.2

Get Top Crypto Currencies by Trading Volume

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/market-data/global/volume

Get the top Crypto Currencies by trading volume

💡PREMIUM ENDPOINT

To use this API, you will need an API key under a Moralis account with the Pro or above plan. To upgrade your API plan, go to the billing page in the Moralis Dashboard.

This API has no parameter and you can simply use the Try It button to test it out.

Responses
API KEY
import Moralis from 'moralis';

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

const response = await Moralis.EvmApi.marketData.getTopCryptoCurrenciesByTradingVolume({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
[
{
"symbol": "ETH",
"name": "Ethereum",
"logo": "https://assets.coingecko.com/coins/images/279/large/ethereum.png?1595348880",
"circulating_supply": "0.0",
"total_supply": "0.0",
"max_supply": "0.0",
"market_cap_usd": "0.0",
"market_cap_rank": "0.0",
"market_cap_24hr_change": "0.0285",
"market_cap_24hr_percent_change": "0.0285",
"total_volume": "0.0",
"usd_price": "0.0",
"usd_price_24hr_high": "0.0",
"usd_price_24hr_low": "0.0",
"usd_price_24hr_change": "0.0",
"usd_price_24hr_percent_change": "0.0",
"usd_price_ath": "0.0",
"ath_percent_change": "0.0",
"ath_date": "0.0",
"usd_price_1hr_percent_change": "0.0",
"usd_price_7d_percent_change": "0.0",
"usd_price_30d_percent_change": "0.0"
}
]