Skip to main content
Version: 2.2

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

Get the top NFT collections by market cap

Responses
API KEY
import Moralis from 'moralis';

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

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

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",
"market_cap_usd": "0.0",
"market_cap_24hr_percent_change": "0.0",
"volume_usd": "0.0",
"volume_24hr_percent_change": "0.0",
"collection_address": "0x123",
"floor_price": "0.0",
"floor_price_usd_24hr_percent_change": "0.0"
}
]