Skip to main content
GET
/
market-data
/
nfts
/
top-collections
Get top NFT collections by market cap
curl --request GET \
  --url https://deep-index.moralis.io/api/v2.2/market-data/nfts/top-collections \
  --header 'X-API-Key: <api-key>'
[
  {
    "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"
  }
]
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-API-Key
string
header
default:test
required

Response

200 - application/json

Returns the top NFT collections by market cap

rank
integer
required

The rank

Example:

1

collection_title
string
required

The collection title

Example:

"CryptoPunks"

collection_image
string
required

The collection image

Example:

""

floor_price_usd
string
required

The floor price in USD

Example:

"0.0"

floor_price_24hr_percent_change
string
required

The floor price 24hr percent change

Example:

"0.0"

market_cap_usd
string
required

The market cap in USD

Example:

"0.0"

market_cap_24hr_percent_change
string
required

The market cap 24hr percent change

Example:

"0.0"

volume_usd
string
required

The volume in USD

Example:

"0.0"

volume_24hr_percent_change
string
required

The volume 24hr percent change

Example:

"0.0"

collection_address
string
required

The collection address

Example:

"0x123"

floor_price
string

The floor price

Example:

"0.0"

floor_price_usd_24hr_percent_change
string

The floor price usd 24hr percent change

Example:

"0.0"