Collection Ranking

This endpoint returns NFT collection ranking statistics referring to NFTScan Ranking.

This endpoint returns NFT collection ranking statistics referring to NFTScan Ranking.

API Endpoint

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

method_path:/api/v2/statistics/ranking/collection/{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
sort_fieldoption{volume_1d,volume_7d,volume_30d,volume_total,volume_change_1d,volume_change_7d,volume_change_30d,sales_1d,sales_7d,sales_30d,sales_total,sales_change_1d,sales_change_7d,sales_change_30d,floor_price,market_cap}queryfalsestring
sort_directionoption{desc,asc}queryfalsestring
limitResult size. Defaults to 20, capped at 100queryfalseinteger(int32)

Response:

ParametersDescriptionsData Typeschema
codeResponse status code (200 means the request was successful, 4XX or 5XX means the request failed)integer(int32)integer(int32)
dataResponse dataarrayCollectionStatModel
  average_price_1dThe average price for 1 daynumber(bigdecimal)
  average_price_30dThe average price for 30 daysnumber(bigdecimal)
  average_price_7dThe average price for 7 daysnumber(bigdecimal)
  average_price_change_1dThe average price growth rate for 1 daystring
  average_price_change_30dThe average price growth rate for 30 daysstring
  average_price_change_7dThe average price growth rate for 7 daysstring
  average_price_totalThe average price for totalnumber(bigdecimal)
  banner_urlThe banner URLstring
  contract_addressThe contract addressstring
  contract_nameThe contract namestring
  floor_priceThe floor price or lowest pricenumber(bigdecimal)
  items_totalHow many items for the collectioninteger(int64)
  logo_urlThe logo URLstring
  market_capThe market capnumber(bigdecimal)
  owners_totalHow many owners for the collectioninteger(int64)
  sales_1dHow many sales for 1 dayinteger(int64)
  sales_30dHow many sales for 30 daysinteger(int64)
  sales_7dHow many sales for 7 daysinteger(int64)
  sales_change_1dThe sale growth rate for 1 daystring
  sales_change_30dThe sale growth rate for 30 daysstring
  sales_change_7dThe sale growth rate for 7 daysstring
  sales_totalHow many sales for totalinteger(int64)
  volume_1dThe volume for 1 daynumber(bigdecimal)
  volume_30dThe volume for 30 daysnumber(bigdecimal)
  volume_7dThe volume for 7 daysnumber(bigdecimal)
  volume_change_1dThe volume growth rate for 1 daystring
  volume_change_30dThe volume growth rate for 30 daysstring
  volume_change_7dThe volume growth rate for 7 daysstring
  volume_totalThe total volumenumber(bigdecimal)
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": [
		{
			"average_price_1d": 1.13,
			"average_price_30d": 1.13,
			"average_price_7d": 1.13,
			"average_price_change_1d": "120%",
			"average_price_change_30d": "120%",
			"average_price_change_7d": "120%",
			"average_price_total": 1.13,
			"banner_url": "https://lh3.googleusercontent.com/svc_rQkHVGf3aMI14v3pN-ZTI7uDRwN-QayvixX-nHSMZBgb1L1LReSg1-rXj4gNLJgAB0-yD8ERoT-Q2Gu4cy5AuSg-RdHF9bOxFDw=s2500",
			"contract_address": "0x307135a29962f0b338c0103e06e8e7d03bd7267f",
			"contract_name": "Doodles",
			"floor_price": 1.113,
			"items_total": 10000,
			"logo_url": "https://logo.nftscan.com/logo/0x8a90cab2b38dba80c64b7734e58ee1db38b8992e.png",
			"market_cap": 1.113,
			"owners_total": 6271,
			"sales_1d": 2,
			"sales_30d": 20,
			"sales_7d": 7,
			"sales_change_1d": "70%",
			"sales_change_30d": "10%",
			"sales_change_7d": "110%",
			"sales_total": 300,
			"volume_1d": 4577.1396,
			"volume_30d": 4577.1396,
			"volume_7d": 4577.1396,
			"volume_change_1d": "70%",
			"volume_change_30d": "10%",
			"volume_change_7d": "110%",
			"volume_total": 4577.1396
		}
	],
	"msg": ""
}