Collection Overview

This endpoint returns collection overview data.

API Endpoint

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

method_path:/api/v2/statistics/collection/overview/{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

Response:

ParametersDescriptionsData Typeschema
codeResponse status code (200 means the request was successful, 4XX or 5XX means the request failed)integer(int32)integer(int32)
dataResponse dataarrayCollectionOverviewModel
  contract_addressThe contract addressstring
  contract_nameThe contract namestring
  floor_priceThe floor price of the collectionnumber(double)
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": [
		{
			"contract_address": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
			"contract_name": "Doodles",
			"floor_price": 6.6952
		}
	],
	"msg": ""
}