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

# Get Wallet Balance (v1)

> Fetch the wallet balance for a user, broken down by coin. `account` query param: `SPOT` (optional filter). `coin_info.<symbol>.withdraw_enable` / `deposit_enable` are booleans.



## OpenAPI

````yaml /openapi-v1.json get /api/v1/wallet/balance
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v1/wallet/balance:
    get:
      tags:
        - Wallet Operations
        - Transfer Crypto
      summary: Get Wallet Balance (v1)
      description: >-
        Fetch the wallet balance for a user, broken down by coin. `account`
        query param: `SPOT` (optional filter).
        `coin_info.<symbol>.withdraw_enable` / `deposit_enable` are booleans.
      operationId: fetch-wallet-balance-of-a-user-v1
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
        - name: account
          in: query
          required: true
          description: The account parameter
          schema:
            type: string
            description: The account parameter
        - name: symbol
          in: query
          required: true
          description: The symbol parameter
          schema:
            type: string
            description: The symbol parameter
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      coin_info:
                        type: object
                      available_balance:
                        type: number
                      total_balance:
                        type: number
              examples:
                fetch-wallet-balance-of-a-user:
                  summary: Fetch wallet balance of a user
                  value:
                    success: true
                    data:
                      coin_info:
                        USDT:
                          withdraw_enable: true
                          available_balance: 76.7
                          total_balance_usd: 76.7
                          deposit_enable: true
                          available_balance_usd: 76.7
                          total_balance: 76.7
                          name: TetherUS
                          coin: USDT
                      available_balance: 76.7
                      total_balance: 76.7
                get-wallet-balance:
                  summary: Get Wallet Balance
                  value:
                    success: true
                    data:
                      total_balance: 123.45
                      available_balance: 120
                      coin_info:
                        USDT:
                          coin: USDT
                          name: Tether
                          available_balance: 100
                          available_balance_usd: 100
                          total_balance: 100
                          total_balance_usd: 100
                          withdraw_enable: true
                          deposit_enable: true

````

## Related topics

- [Get Wallet Address (v1)](/api-reference/wallet-operations/get-wallet-address-v1.md)
- [Overview](/client/pool-account/overview.md)
- [Get Buy Quote (v1)](/api-reference/onramp/get-buy-quote-v1.md)
- [Get Transaction Details (v1)](/api-reference/offramp/get-transaction-details-v1.md)
- [Get Payment Methods (v1)](/api-reference/onramp/get-payment-methods-v1.md)
