> ## 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 project balance



## OpenAPI

````yaml /api-reference/openapi.yaml get /balances/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:
  /balances/unified:
    get:
      summary: Get unified project balance
      operationId: getUnifiedProjectBalance
      parameters:
        - 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

````