Get <Top NFT Collections> Interface

Obtain the list of popular collections according to the specified filter parameters, and also obtain detailed information such as the floor price and transaction volume of the collection

Request Address: /api/v2/meta/topCollections

Request Method: GET

Request Parameters:

Field Name
Field Description
Type
Notes

page

Page (default: 1)

integer

pageSize

Number in each page (default: 10)

integer

time

Time Frame (default: 1)(1:1 day, 7:7 days, 30:30 days)

integer

orderField

Sort Field (default vol) (owners|floor_price|supply|vol|volPercent)

string

orderType

Sort Type (default: desc)

string

keyWords

Search Key Words (support collections, address)

string

find

all: search all

string

Output Parameters:

Field Name
Field Description
Type

id

collection Key ID

integer

name

Collection Name

string

imageUrl

Collection Image Url Address

string

Owners

Holder addresses

integer

floorPrice

Floor Price

string

symbol

Token Name

string

supply

Total Supply

integer

vol

Transaction Volume

integer

volPercent

Transaction Volume percentage

integer

Output example:

{
    "resCode":"100",
    "resMsg":"Success",
    "data":{
        "lists":[
            {
                "id":"386412091616028672",
                "owners":6253,
                "floorPrice":"102.6969",
	        "symbol":"ETH",
                "supply":9999,
                "name":"BoredApeYachtClub",
                "imageUrl":"https://lh3.googleusercontent.com/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB=s130",
                "vol":"3077.6900000000005",
                "volPercent":"0.3605876137805424"
            },
            {
                "id":"386412091616028696",
                "owners":517,
                "floorPrice":"39.5",
	        "symbol":"ETH",
                "supply":3,
                "name":"BoredApeChemistryClub",
                "imageUrl":"https://lh3.googleusercontent.com/Mf4vImKbzrJUcj7f7RZNOl9iZSEEJgkvpiUp9ugXc9dcpxFe6fvVgxYcRmTI1PnvfL_X1bD3mH4e66j6aJhqLEYm0vvpC8Jy8XJNZOI=s130",
                "vol":"113.5",
                "volPercent":"0"
            },
            {
                "id":"386412091616028695",
                "owners":12359,
                "floorPrice":"22.5",
	        "symbol":"ETH",
                "supply":19094,
                "name":"MutantApeYachtClub",
                "imageUrl":"https://lh3.googleusercontent.com/lHexKRMpw-aoSyB1WdFBff5yfANLReFxHzt1DOj_sg7mS14yARpuvYcUtsyyx-Nkpk6WTcUPFoG53VnLJezYi8hAs0OxNZwlw6Y-dmI=s130",
                "vol":"2793.6214300000006",
                "volPercent":"0.1872185320603382"
            }
        ]
    }
}

Last updated