nr_getNFTHoldingCount

This API method helps you to get the number of NFT(721/1155) token holdings of an account.

📘

Supported on BSC and ETH mainnet only.

Parameters

  • Account Address - The address of the account in hex format

Returns

  • count721 - string, number of NFT(721) token holdings
  • count1155 - string, number of NFT(1155) token holdings

API Endpoint

The format of a MegaNode API endpoint is https://{chain}-{network}.nodereal.io/v1/{API-key}
Here is an example:

https://bsc-mainnet.nodereal.io/v1/4c0a1c23661a4e26bcbcwed461e34ea9

For other chains or networks, you could refer to this guidance Find API key & endpoint.

Example

Request

curl https://bsc-mainnet.nodereal.io/v1/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"nr_getNFTHoldingCount","params":["0x21d45650db732cE5dF77685d6021d7D5d1da807f"],"id": 1 }'

Result

{
  "id": "1",
  "jsonrpc": "2.0",
  "result": {
    "count721": "0x2",
    "count1155": "0x0"
  }
}