# balance **Type:** GraphQL queries **Description:** Returns the balances for a given account, chain, and module combination. This query calculates and returns the user's balance for each specified combination of **account**, **chain ID**, and **module**. For example, it can return how much balance the account `k:9492...5c17` holds on **chain 1** within the **coin** module. ## Arguments - accountName (String): The full account name to retrieve balances for. - chainIds (String): A list of chain IDs to include in the balance retrieval. Example: `["0", "1"]` - module (String): The name of the module that issued the token. Example: `"coin"` - after (String): Cursor to start paginating **after** a specific result. Used for forward pagination. - before (String): Cursor to start paginating **before** a specific result. Used for backward pagination. - first (Int): Maximum number of balance records to return when paginating forward. - last (Int): Maximum number of balance records to return when paginating backward. ## Response **Type:** QueryBalanceConnection **Description:** Connection type for balance query results. ### Fields - edges (QueryBalanceConnectionEdge) - pageInfo (PageInfo)