> ## 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.

# Private balances



## OpenAPI

````yaml /api-reference/openapi.yaml get /privacy/balances
openapi: 3.1.0
info:
  title: Onbeam API
  version: 1.0.0
servers:
  - url: https://api.onbeam.io
  - url: http://localhost:3004
security: []
paths:
  /privacy/balances:
    get:
      summary: Private balances
      operationId: getPrivateBalances
      responses:
        '200':
          description: Private balances
          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

````