> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# BalancesInput

> BalancesInput input type

<div data-generated>
  ## GraphQL

  ```
  input BalancesInput {
    walletAddress: String
    networks: [Int!]
    tokens: [String!]
    includeNative: Boolean
    limit: Int
    cursor: String
    removeScams: Boolean
    sortBy: BalancesSortAttribute
    sortDirection: RankingDirection
    uiAmountMode: UiAmountMode
  }

  enum BalancesSortAttribute {
    BALANCE
    USD_VALUE
  }

  enum RankingDirection {
    ASC
    DESC
  }

  enum UiAmountMode {
    RAW
    SCALED
  }
  ```

  ### Used By

  **Used as input by**

  * [balances](/api-reference/queries/balances.md): Returns list of token balances that a wallet has.
</div>
