# NonFungibleTokenBalance **Type:** GraphQL objects **Description:** Represents the balance of a specific non-fungible token (NFT) for a given account on a specific chain. Each `NonFungibleTokenBalance` entry links an account, a unique token identifier, and its associated metadata. Unlike fungible balances, which represent divisible amounts, non-fungible balances typically indicate ownership of unique tokens — usually `0` (not owned) or `1` (owned) per token ID. This type is useful for exploring which NFTs an account holds, retrieving metadata about those tokens, and inspecting the chain and guard conditions associated with them. ## Fields - accountName (String): The full name of the account associated with this NFT balance. Example: `"k:abcdef123456..."` for a user account or `"free.my-contract"` for a contract account. - balance (Int): The balance of this specific non-fungible token for the account. Typically `1` if the token is owned or `0` if not. - chainId (String): The chain ID where this token balance is tracked. - guard (IGuard, Not Null): The guard that defines the security conditions for this token. A guard specifies who must sign transactions in order to transfer or interact with this token. - keys (String) - predicate (String) - raw (String) - id (ID): Globally unique identifier for this NFT balance node. - info (NonFungibleToken): Metadata and details of the non-fungible token associated with this balance. - precision (Int): The number of decimal places used by this token. For NFTs this is usually `0`, as they represent indivisible assets. - supply (Int): The total number of tokens minted for this NFT collection or contract. - uri (String): A URI pointing to external metadata for the token. This may include fields like name, description, image, attributes, or links to off-chain data. - tokenId (String): The unique identifier of the non-fungible token. - version (String): The version of the token or contract associated with this NFT. Useful for distinguishing between different token contract versions or upgrades.