Skip to main content
Version: 2.0

Get the top NFT collections by trading volume

GEThttps://deep-index.moralis.io/api/v2/market-data/nfts/hottest-collections

Get the top NFT collections 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.getHottestNFTCollectionsByTradingVolume({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
[
{
"rank": "1",
"collection_title": "CryptoPunks",
"collection_image": "",
"floor_price_usd": "0.0",
"floor_price_24hr_percent_change": "0.0",
"volume_usd": "0.0",
"volume_24hr_percent_change": "0.0",
"The average price in USD": "0.0"
}
]