# nonFungibleAccount **Type:** GraphQL queries **Description:** Retrieve details of a specific non-fungible account by its name. A non-fungible account represents the ownership and activity of unique tokens (NFTs) on the Kadena blockchain. Unlike fungible accounts that track divisible token balances, non-fungible accounts hold individual, distinct tokens and their associated metadata. This query lets you look up a specific account and retrieve information such as its NFT balances, per-chain details, and historical transaction and transfer activity. It is commonly used in NFT explorers, wallets, or analytics tools to inspect an account’s non-fungible holdings and interactions. ## Arguments - accountName (String): The full name of the account to retrieve. Example: `"k:abcdef123456..."` for a user account or `"free.my-contract"` for a contract account. ## Response **Type:** NonFungibleAccount **Description:** Represents an account associated with non-fungible tokens (NFTs) on the Kadena blockchain. A `NonFungibleAccount` tracks the ownership and activity of a specific account for non-fungible tokens. Unlike fungible accounts, which hold divisible token balances, non-fungible accounts are associated with unique tokens and their metadata. Because Kadena operates as a multi-chain network, a single account may hold NFTs across multiple chains. This type exposes account-level NFT balances, per-chain details, and historical transaction and transfer data. ### Fields - accountName (String): The full name of the account (e.g., `k:abcdef123456...` for a user account or `free.my-contract` for a contract account). - chainAccounts (NonFungibleChainAccount): Per-chain breakdown of this non-fungible account. Since Kadena operates multiple braided chains, NFT balances and activity are tracked separately on each chain. - id (ID): Globally unique identifier for this non-fungible account node. - nonFungibleTokenBalances (NonFungibleTokenBalance): A list of non-fungible token balances held by this account across all chains. Each balance entry includes token identifiers, metadata, and ownership details. - transactions (NonFungibleAccountTransactionsConnection): Paginated list of transactions involving this account. Note: Custom token-related transactions are not included. Transactions here represent operations such as NFT minting, transfers, or contract interactions related to NFTs. - transfers (NonFungibleAccountTransfersConnection): Paginated list of NFT transfers associated with this account. Transfers represent movements of non-fungible tokens into or out of this account.