Collection Trade Distribution

This endpoint returns NFT collection trade distribution referring to NFTScan Traded Distribution.

This endpoint returns NFT collection trade distribution referring to NFTScan Traded Distribution.

API Endpoint

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

method_path:/api/v2/statistics/collection/trade/{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
timeoption{1d,1h,4h,12h,3d,7d,30d,90d}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 dataarrayTradeDistributionModel
  exchange_nameThe NFT trading exchange namestring
  timestampThe timestamp in milliseconds of the transactioninteger(int64)
  trade_priceThe trade price of the transaction in Numbernumber(double)
  transaction_hashThe transaction hashstring
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": [
		{
			"exchange_name": "Opensea",
			"timestamp": 1658729641000,
			"trade_price": 0.1,
			"transaction_hash": "0x382df08489c766cabf26526db6570927b9df7d7fdc41d866d3a7cb784c1fcba0"
		}
	],
	"msg": ""
}