Blue Chip

This endpoint returns blue chip statistics referring to NFTScan Overview.

This endpoint returns blue chip statistics referring to NFTScan Overview.

API Endpoint

https://open-platform.nodereal.io/{apiKey}/nftscan

method_path:/api/v2/statistics/blue/chip/{contract_address}/{chain_name}

method_type:GET

Request:

ParametersDescriptionsQuery TypeRequiredData Typeschema
contract_addressThe NFT contract addressdefaultValue{0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d}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 dataBlueChipModelBlueChipModel
  blue_chip_ownerHow many owners who have at least one Blue Chip NFT for the collectioninteger(int32)
  next_blue_chip_probabilityPercentage of owners of this collection who have at least one Blue Chip NFTstring
  ownerHow many owners for the collectioninteger(int32)
msgError message when request failsstring

Example:

{
	"code": 200,
	"data": {
		"blue_chip_owner": 5638,
		"next_blue_chip_probability": "88.11%",
		"owner": 6394
	},
	"msg": ""
}