Account Overview

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:

ParametersDescriptionsQuery TypeRequiredData Typeschema
account_addressThe account addressdefaultValue{0xca1257ade6f4fa6c6834fdc42e030be6c0f5a813}pathtruestring
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

Response:

ParametersDescriptionsData Typeschema
codeResponse status code (200 means the request was successful, 4XX or 5XX means the request failed)integer(int32)integer(int32)
dataResponse dataPersonalOverviewModelPersonalOverviewModel
  bought_countThe number of NFTs boughtinteger(int64)
  bought_valueThe value of NFTs boughtnumber(double)
  bought_value_usdtThe usdt value of NFTs boughtnumber(double)
  burn_countThe number of NFTs burntinteger(int64)
  gas_valueThe value of operating NFTs gas feenumber(double)
  gas_value_usdtThe usdt value of operating NFTs gas feenumber(double)
  holding_countThe number of NFTs heldinteger(int64)
  holding_valueThe value of NFTs heldnumber(double)
  holding_value_usdtThe usdt value of NFTs heldnumber(double)
  mint_countThe number of NFTs mintedinteger(int64)
  receive_countThe number of NFTs receivedinteger(int64)
  send_countThe number of NFTs sendinteger(int64)
  sold_countThe number of NFTs soldinteger(int64)
  sold_valueThe value of NFTs soldnumber(double)
  sold_value_usdtThe usdt value of NFTs soldnumber(double)
msgError message when request failsstring

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": ""
}