# nonFungibleChainAccount **Type:** GraphQL queries **Description:** Retrieve details of a specific non-fungible account on a specific chain. This query returns a `NonFungibleChainAccount`, which represents an account’s NFT holdings and activity **restricted to a single chain** within the Kadena network. Because Kadena operates as a multi-chain blockchain, NFT balances, transactions, and transfers are tracked separately on each chain. Use this query when you need precise, chain-level data about a particular account — for example, when building an NFT explorer or wallet feature that shows a user’s holdings and interactions on a specific chain. ## 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. - chainId (String): The ID of the chain where the account exists. Kadena runs multiple braided chains, and NFT data is tracked separately on each. ## Response **Type:** NonFungibleChainAccount **Description:** Represents a non-fungible (NFT) account **on a specific chain** in the Kadena network. While `NonFungibleAccount` aggregates NFT holdings and activity across all chains for an account, `NonFungibleChainAccount` focuses on a single chain. It exposes the account’s per-chain NFT balances and its transaction/transfer history limited to that chain. This is useful for explorers, wallets, and analytics tools that need precise, chain-level NFT 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). - chainId (String): The chain ID where this non-fungible account exists. - id (ID): Globally unique identifier for this chain-scoped NFT account node. - nonFungibleTokenBalances (NonFungibleTokenBalance): The list of NFT balances held by this account on this chain. Each entry typically includes the token identifier(s), quantity/ownership info, and associated metadata for that token/collection. - transactions (NonFungibleChainAccountTransactionsConnection): Paginated list of NFT-related transactions involving this account on this chain. Transactions can include mints, transfers, or contract interactions that affect NFT state. - transfers (NonFungibleChainAccountTransfersConnection): Paginated list of NFT transfers into or out of this account on this chain. Transfers are a subset of transactions focused specifically on movements of NFTs.