This endpoint returns NFT mint ranking statistics referring to NFTScan Minting.
This endpoint returns NFT mint ranking statistics referring to NFTScan Minting.
API Endpoint
https://open-platform.nodereal.io/{apiKey}/nftscan
method_path:/api/v2/statistics/ranking/mint/{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 | |
time | option{1d,15m,30m,1h,6h,12h,3d} | 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 | MintModel |
contract_address | The contract address | string | |
contract_name | The contract name | string | |
floor_price | The floor price or lowest price | number(bigdecimal) | |
logo_url | The logo URL | string | |
mint_cost | The mint cost | number(bigdecimal) | |
mint_total | How many items were minted | integer(int64) | |
mint_total_change | The mint total growth rate | string | |
sale_total | How many items were sold | integer(int32) | |
msg | Error message when request fails | string |
Example:
{
"code": 200,
"data": [
{
"contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"contract_name": "BoredApeYachtClub",
"floor_price": 1.113,
"logo_url": "https://logo.nftscan.com/logo/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d.png",
"mint_cost": 0.08,
"mint_total": 10000,
"mint_total_change": "53%",
"sale_total": 25
}
],
"msg": ""
}