Get NFT List

Obtain the NFT list under a collection according to the specified filter parameters

Request Url: /api/v2/meta/assets

Request Method: POST

Request Parameters:

{
	"collectionId": "386412091616028672", // Corresponding NFT classification ID
	"filters": { //filter
		"traits": ["1"], // id array of traits
		"traitsRange": {}, 
		"rankRange": { // Rarity Rank
			"max": "1000",
			"min": "41"
		},
		"priceRange": { // Price Range
			"max": "",
			"min": ""
		},
		"keyword": ""
	},
	"sort": {
		"currentEthPrice": "asc" // Price sort asc(ascending) desc (descending
)	},
	"fields": {
		"buyNow": 1, // Is it available to buy right now
		"rarityScore": 1 // The rarity ranking switch is now open
	},
	"page": 1,
	"pageSize": 30,
}

Output example:

Last updated