Skip to main content
Version: 2.2

Get Top NFT Collections 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/nfts/hottest-collections

Get the top NFT collections by trading volume

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",
"collection_address": "0x123",
"average_price": "0.0",
"floor_price": "0.0",
"floor_price_usd_24hr_percent_change": "0.0",
"floor_price_7d_percent_change": "0.0",
"floor_price_usd_7d_percent_change": "0.0",
"floor_price_30d_percent_change": "0.0",
"floor_price_usd_30d_percent_change": "0.0"
}
]