Marketplace Ranking

This endpoint returns NFT marketplace ranking statistics referring to NFTScan Marketplace.

This endpoint returns NFT marketplace ranking statistics referring to NFTScan Marketplace.

API Endpoint

https://open-platform.nodereal.io/{apiKey}/nftscan

method_path:/api/v2/statistics/ranking/marketplace/{chain_name}

method_type:GET

Request:

ParametersDescriptionsQuery TypeRequiredData Typeschema
chain_nameName of the chain you’re querying. List of supported values: "eth" for Ethereum; "bnb" for BNB Smart Chain; "polygon" for Polygon; "moonbeam" for Moonbeam; "arbitrum" for Arbitrum One; "optimism" for Optimism; "platon" for PlatON; "avalanche" for Avalanche; "cronos" for Cronos; "fantom" for Fantom; "gnosis" for Gnosis;pathtruestring
timeoption{1d,7d,30d,all}queryfalsestring
sort_fieldoption{volume,sales,wallet}queryfalsestring
sort_directionoption{desc,asc}queryfalsestring

Response:

ParametersDescriptionsData Typeschema
codeResponse status code (200 means the request was successful, 4XX or 5XX means the request failed)integer(int32)integer(int32)
dataResponse dataarrayNftMarketPlaceModel cn{{Nft 市场模型}
  contract_nameThe contract namestring
  contractsThe contracts of the NFT trading marketplacearraystring
  gasThe gasnumber(bigdecimal)
  handling_feeThe handling feestring
  logo_urlThe logo URLstring
  salesHow many salesinteger(int32)
  volumeThe volumenumber(bigdecimal)
  volume1d_changeThe volume growth rate for 1 daystring
  volume30d_changeThe volume growth rate for 30 daystring
  volume7d_changeThe volume growth rate for 7 daystring
  walletsHow many walletsinteger(int64)
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": [
		{
			"contract_name": "Opensea",
			"contracts": [],
			"gas": 560.13,
			"handling_fee": "2.5%",
			"logo_url": "https://logo.nftscan.com/logo/0x7f268357a8c2552623316e2562d90e642bb538e5.png",
			"sales": 20,
			"volume": 4577.1396,
			"volume1d_change": "53%",
			"volume30d_change": "53%",
			"volume7d_change": "53%",
			"wallets": 20000
		}
	],
	"msg": ""
}