> ## Documentation Index
> Fetch the complete documentation index at: https://docs.platform.arb.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# Get current balance

> Retrieves the current credit and dollar balance for the authenticated user or organization. Balance is determined automatically from the authentication token.



## OpenAPI

````yaml api-reference/billing.yaml post /balance/get
openapi: 3.0.3
info:
  title: billing
  description: >-
    The Billing Service manages billing-related operations across the platform.
    It handles all financial transactions, balance management, and SKU-based
    pricing across the platform.
  version: 1.0.0
servers:
  - url: https://billing.platform.arb.inc
security: []
tags:
  - name: /
  - name: _internal
  - name: balance
  - name: charge
  - name: checkout
  - name: pricing
  - name: skus
  - name: transactions
paths:
  /balance/get:
    post:
      tags:
        - balance
      summary: Get current balance
      description: >-
        Retrieves the current credit and dollar balance for the authenticated
        user or organization. Balance is determined automatically from the
        authentication token.
      operationId: getBalance
      responses:
        '200':
          description: Current balance information
          content:
            application/json:
              schema:
                type: object
                properties:
                  balanceID:
                    type: string
                    example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                  userID:
                    type: string
                    format: uuid
                    example: 2720f109-0caf-4c62-af22-5d08c853711c
                  orgID:
                    type: string
                    format: uuid
                    example: 3840f219-1dbf-5d73-bg33-6e19d964822d
                  credits:
                    type: number
                    description: Current credit balance
                    example: 150.5
                  dollars:
                    type: number
                    description: Current dollar balance
                    example: 25.75
                  created:
                    type: string
                    format: date-time
                    example: '2025-08-15T10:30:00.000Z'
                  updated:
                    type: string
                    format: date-time
                    example: '2025-08-15T14:22:00.000Z'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````