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

# Get unified wallet balance



## OpenAPI

````yaml /api-reference/openapi.yaml get /wallets/{walletId}/balance/unified
openapi: 3.1.0
info:
  title: Onbeam API
  version: 1.0.0
servers:
  - url: https://api.onbeam.io
  - url: http://localhost:3004
security: []
paths:
  /wallets/{walletId}/balance/unified:
    get:
      summary: Get unified wallet balance
      operationId: getUnifiedWalletBalance
      parameters:
        - name: walletId
          in: path
          required: true
          schema:
            type: string
        - name: currency
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Unified balance
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnifiedBalanceResponse'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    UnifiedBalanceResponse:
      type: object
      properties:
        totals:
          type: array
          items:
            type: object
            properties:
              token:
                type: string
              amount:
                type: string
            required:
              - token
              - amount
      required:
        - totals
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````