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

# Get Balances List

> 查询钱包币种余额。<br/>This endpoint returns a JSON response with a list of token assets and their balances for for the specified wallet. The response includes the total count of token assets, as well as information about each asset, such as the coin symbol code, display name, decimal, total balance as well as frozen balance.



## OpenAPI

````yaml get /v1/wallet/balance
openapi: 3.0.1
info:
  title: Custodial Wallet APIs
  description: Open APIs for BisonBlock Custodial Wallet
  license:
    name: Apache 2.0
  version: V1.0.0
servers:
  - url: https://sandbox-openapi.bisonblock.ai/api
    description: BisonBlock server url for Sandbox
security: []
paths:
  /v1/wallet/balance:
    get:
      tags:
        - Wallets
      summary: Get Balances List
      description: >-
        This endpoint returns a JSON response with a list of token assets and
        their balances for for the specified wallet. The response includes the
        total count of token assets, as well as information about each asset,
        such as the coin symbol code, display name, decimal, total balance as
        well as frozen balance.
      operationId: balance
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResultListApiWalletBalanceRes'
      security:
        - BIZ-API-KEY: []
          BIZ-API-NONCE: []
          BIZ-API-SIGNATURE: []
components:
  schemas:
    ResultListApiWalletBalanceRes:
      type: object
      properties:
        code:
          type: integer
          format: int32
          description: 0 is for success, others are for failure
        data:
          type: array
          items:
            $ref: '#/components/schemas/ApiWalletBalanceRes'
        msg:
          type: string
    ApiWalletBalanceRes:
      type: object
      properties:
        name:
          type: string
          description: display name
        symbol:
          type: string
          description: symbol code
        contractAddress:
          type: string
          description: smart contract address for token, null for main-chain token
        chainName:
          type: string
          description: chain name
        chainSymbol:
          type: string
          description: chain symbol code
        slip44:
          type: integer
          description: >-
            Chain's slip44 code, such as Bitcoin is 0, Ethereum is 60, Tron is
            195. Refer to [Registered coin
            types](https://github.com/satoshilabs/slips/blob/master/slip-0044.md)
          format: int64
        balance:
          type: string
          description: total balance including frozen
        frozen:
          type: string
          description: frozen balance
        decimal:
          type: integer
          description: decimal
          format: int32
  securitySchemes:
    BIZ-API-KEY:
      type: apiKey
      in: header
      name: BIZ-API-KEY
      description: This field contains the API key.
    BIZ-API-NONCE:
      type: apiKey
      in: header
      name: BIZ-API-NONCE
      description: This field contains the nonce.
    BIZ-API-SIGNATURE:
      type: apiKey
      in: header
      name: BIZ-API-SIGNATURE
      description: This field contains the signature.

````