# fungibleAccount **Type:** GraphQL queries **Description:** Retrieve details of a specific fungible account (such as a KDA coin account) by its name and fungible type. In Kadena, a fungible account represents a balance-holding entity for a given fungible token module (e.g., `coin`, which isthe native KDA token). This query lets you look up that account’s information by providing its full `accountName` and the name of the fungible module. It is commonly used to fetch the balance and metadata for a user or contract address. ## 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. - fungibleName (String): The name of the fungible token module (e.g., `coin`) associated with the account. ## Response **Type:** FungibleAccount **Description:** Represents an account associated with a specific fungible token on the Kadena blockchain. A `FungibleAccount` tracks the balance and activity of a single account (such as a user key account or contract) for a given fungible token module (for example, `coin` for KDA). Because Kadena is a multi-chain network, a fungible account may have balances distributed across multiple chains. This type exposes both the aggregated balance and per-chain details, along with historical transactions and transfers. ### Fields - id (ID): Globally unique identifier for this fungible account node. - 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 (FungibleChainAccount): Per-chain breakdown of this fungible account. Since Kadena operates multiple braided chains, an account can have different balances on each chain. - fungibleName (String): The name of the fungible token module associated with this account (e.g., `coin`). - totalBalance (Decimal): The total balance of this account across all chains for the specified fungible token. - transactions (FungibleAccountTransactionsConnection): Paginated list of transactions involving this account. Transactions represent operations such as transfers, contract calls, or other state changes that affect this account. - transfers (FungibleAccountTransfersConnection): Paginated list of transfers associated with this account. Transfers represent direct movements of the fungible token into or out of this account.