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:
Parameters | Descriptions | Query Type | Required | Data Type | schema |
---|---|---|---|---|---|
chain_name | Name 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; | path | true | string | |
contract_address | The NFT contract addressdefaultValue{0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d} | path | true | string | |
time | option{1d,1h,4h,12h,3d,7d,30d,90d} | query | false | string |
Response:
Parameters | Descriptions | Data Type | schema |
---|---|---|---|
code | Response status code (200 means the request was successful, 4XX or 5XX means the request failed) | integer(int32) | integer(int32) |
data | Response data | array | TradeDistributionModel |
exchange_name | The NFT trading exchange name | string | |
timestamp | The timestamp in milliseconds of the transaction | integer(int64) | |
trade_price | The trade price of the transaction in Number | number(double) | |
transaction_hash | The transaction hash | string | |
msg | Error message when request fails | string |
Example:
{
"code": 200,
"data": [
{
"exchange_name": "Opensea",
"timestamp": 1658729641000,
"trade_price": 0.1,
"transaction_hash": "0x382df08489c766cabf26526db6570927b9df7d7fdc41d866d3a7cb784c1fcba0"
}
],
"msg": ""
}