Avalanche · Schema

ListErc721BalancesResponse

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
nextPageToken string A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
nativeTokenBalance object The native token balance for the address.
erc721TokenBalances array The list of ERC-721 token balances for the address.
View JSON Schema on GitHub

JSON Schema

ListErc721BalancesResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ListErc721BalancesResponse.json",
  "title": "ListErc721BalancesResponse",
  "type": "object",
  "properties": {
    "nextPageToken": {
      "type": "string",
      "description": "A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages."
    },
    "nativeTokenBalance": {
      "description": "The native token balance for the address.",
      "allOf": [
        {
          "$ref": "#/components/schemas/NativeTokenBalance"
        }
      ]
    },
    "erc721TokenBalances": {
      "description": "The list of ERC-721 token balances for the address.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Erc721TokenBalance"
      }
    }
  },
  "required": [
    "nativeTokenBalance",
    "erc721TokenBalances"
  ]
}