This endpoint returns overview statistics for an account address referring to NFTScan Overview.
This endpoint returns overview statistics for an account address referring to NFTScan Overview.
API Endpoint
https://open-platform.nodereal.io/{apiKey}/nftscan
method_path:/api/v2/statistics/overview/{account_address}/{chain_name}
method_type:GET
Request:
Parameters | Descriptions | Query Type | Required | Data Type | schema |
---|---|---|---|---|---|
account_address | The account addressdefaultValue{0xca1257ade6f4fa6c6834fdc42e030be6c0f5a813} | path | true | string | |
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 | PersonalOverviewModel | PersonalOverviewModel |
bought_count | The number of NFTs bought | integer(int64) | |
bought_value | The value of NFTs bought | number(double) | |
bought_value_usdt | The usdt value of NFTs bought | number(double) | |
burn_count | The number of NFTs burnt | integer(int64) | |
gas_value | The value of operating NFTs gas fee | number(double) | |
gas_value_usdt | The usdt value of operating NFTs gas fee | number(double) | |
holding_count | The number of NFTs held | integer(int64) | |
holding_value | The value of NFTs held | number(double) | |
holding_value_usdt | The usdt value of NFTs held | number(double) | |
mint_count | The number of NFTs minted | integer(int64) | |
receive_count | The number of NFTs received | integer(int64) | |
send_count | The number of NFTs send | integer(int64) | |
sold_count | The number of NFTs sold | integer(int64) | |
sold_value | The value of NFTs sold | number(double) | |
sold_value_usdt | The usdt value of NFTs sold | number(double) | |
msg | Error message when request fails | string |
Example:
{
"code": 200,
"data": {
"bought_count": 1051,
"bought_value": 148649.85,
"bought_value_usdt": 246352936.91,
"burn_count": 0,
"gas_value": 6.6,
"gas_value_usdt": 10941,
"holding_count": 49,
"holding_value": 9.97,
"holding_value_usdt": 16522.98,
"mint_count": 34,
"receive_count": 22,
"send_count": 3,
"sold_count": 1050,
"sold_value": 148886.72,
"sold_value_usdt": 246745494
},
"msg": ""
}