This endpoint returns NFT market cap ranking statistics.
API Endpoint
https://open-platform.nodereal.io/{apiKey}/nftscan
method_path:/api/v2/statistics/ranking/marketcap/{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 |
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 | NftTop500ByMarketCapModel |
average_market_price | The average market price | number(bigdecimal) | |
contract_address | The contract address | string | |
contract_name | The contract name | string | |
items_total | The total count of NFT items | integer(int64) | |
logo_url | The logo URL | string | |
market_cap | The market cap | number(bigdecimal) | |
msg | Error message when request fails | string |
Example:
{
"code": 200,
"data": [
{
"average_market_price": 100,
"contract_address": "0x307135a29962f0b338c0103e06e8e7d03bd7267f",
"contract_name": "Doodles",
"items_total": 10000,
"logo_url": "https://logo.nftscan.com/logo/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d.png",
"market_cap": 1000000
}
],
"msg": ""
}