> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account Balances (v2)

> Returns the authenticated user's account balances. Spendable excludes dust and processingWithdrawals is exposed at the currency level. Each currency row includes a per-token breakdown.



## OpenAPI

````yaml https://gp-auth-module.prod.gnosispay.com/openapi.json get /user/balances/v2
openapi: 3.0.0
info:
  version: 1.0.0
  title: SIWE Authentication API
  description: Sign In With Ethereum authentication service
servers:
  - url: https://gp-auth-module.prod.gnosispay.com
    description: API server
security: []
paths:
  /user/balances/v2:
    get:
      tags:
        - User
      summary: Get Account Balances (v2)
      description: >-
        Returns the authenticated user's account balances. Spendable excludes
        dust and processingWithdrawals is exposed at the currency level. Each
        currency row includes a per-token breakdown.
      responses:
        '200':
          description: Account balances retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountBalancesV2Response'
        '401':
          description: Unauthorized - Invalid JWT
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: User or account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '502':
          description: Bad Gateway - failed to fetch balances from Core API
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - Bearer: []
components:
  schemas:
    AccountBalancesV2Response:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AccountBalanceV2'
      required:
        - data
    Error:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
      required:
        - success
        - error
    AccountBalanceV2:
      type: object
      properties:
        currency:
          type: string
        decimals:
          type: number
        spendable:
          type: string
        nonSpendable:
          type: string
        processingDeposits:
          type: string
        processingWithdrawals:
          type: string
        tokens:
          type: array
          items:
            $ref: '#/components/schemas/TokenBalance'
      required:
        - currency
        - decimals
        - spendable
        - nonSpendable
        - processingDeposits
        - processingWithdrawals
        - tokens
    TokenBalance:
      type: object
      properties:
        token:
          type: string
        decimals:
          type: number
        spendable:
          type: string
        nonSpendable:
          type: string
        processingDeposits:
          type: string
        maxInstantWithdraw:
          type: string
          description: >-
            Maximum amount of this token that an instant withdrawal would accept
            right now, in token base units. Already accounts for pending
            card-authorization holds and available on-chain backing.
      required:
        - token
        - decimals
        - spendable
        - nonSpendable
        - processingDeposits
        - maxInstantWithdraw

````