Collection Statistics

This endpoint returns statistics for a collection referring to NFTScan Collection.

This endpoint returns statistics for a collection referring to NFTScan Collection.

API Endpoint

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

method_path:/api/v2/statistics/collection/{contract_address}/{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
contract_addressThe NFT contract addressdefaultValue{0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d}pathtruestring

Response:

ParametersDescriptionsData Typeschema
codeResponse status code (200 means the request was successful, 4XX or 5XX means the request failed)integer(int32)integer(int32)
dataResponse dataNftPlatformInfoStatisticsModelNftPlatformInfoStatisticsModel
  average_price_24hThe 24h average pricenumber(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
  contract_addressThe contract addressstring
  contract_nameThe contract namestring
  erc_typeThe erc type of the collectionstring
  floor_priceThe floor price of the collectionnumber(bigdecimal)
  highest_priceThe highest pricenumber(bigdecimal)
  items_totalHow many items for the collectioninteger(int64)
  logo_urlThe logo URLstring
  lowest_price_24hThe 24h lowest pricenumber(bigdecimal)
  market_capThe market capnumber(bigdecimal)
  next_blue_chip_probabilityPercentage of owners of this collection who have at least one Blue Chip NFTstring
  owners_totalHow many owners for the collectioninteger(int64)
  salesThe total salesinteger(int64)
  sales_24hThe 24h salesinteger(int64)
  total_volumeThe total volumenumber(bigdecimal)
  volume_1dThe volume for 1 daynumber(bigdecimal)
  volume_24hThe 24h volumenumber(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
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": {
		"average_price_24h": 10.134,
		"average_price_change_1d": "120%",
		"average_price_change_30d": "120%",
		"average_price_change_7d": "120%",
		"contract_address": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
		"contract_name": "Doodles",
		"erc_type": "erc721",
		"floor_price": 1.113,
		"highest_price": 296.69,
		"items_total": 10000,
		"logo_url": "https://logo.nftscan.com/logo/0x8a90cab2b38dba80c64b7734e58ee1db38b8992e.png",
		"lowest_price_24h": 8.969,
		"market_cap": 68642,
		"next_blue_chip_probability": "52.22%",
		"owners_total": 6271,
		"sales": 44,
		"sales_24h": 3,
		"total_volume": 94607.141,
		"volume_1d": 762.3803,
		"volume_24h": 445.895,
		"volume_30d": 18857.0902,
		"volume_7d": 5705.4187,
		"volume_change_1d": "40%",
		"volume_change_30d": "495.88%",
		"volume_change_7d": "-31.95%"
	},
	"msg": ""
}