Skip to main content
Version: 2.2

Get Top Crypto Currencies by Market Cap

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/market-cap

Get the top Crypto Currencies by market cap

Responses
API KEY
import Moralis from 'moralis';

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

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

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"
}
]