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

# Get ledger balance

> Retrieve current and available balance for a ledger



## OpenAPI

````yaml get /v1/ledgers/{id}/balance
openapi: 3.0.0
info:
  title: Ledgers API
  version: 1.0.0
  description: API for managing accounting ledgers and entries
servers: []
security:
  - bearerAuth: []
tags:
  - name: Ledgers
    description: Ledger management operations
paths:
  /v1/ledgers/{id}/balance:
    get:
      tags:
        - Ledger Operations
      summary: Get ledger balance
      description: Retrieve current and available balance for a ledger
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Ledger UUID
      responses:
        '200':
          description: Successfully retrieved balance
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LedgerBalance'
        '404':
          description: Ledger not found
components:
  schemas:
    LedgerBalance:
      type: object
      properties:
        ledger_id:
          type: string
          format: uuid
        balance_current:
          type: integer
          description: Current balance in cents
        balance_available:
          type: integer
          description: Available balance in cents
        currency_code:
          type: string
          minLength: 3
          maxLength: 3
        last_activity_date:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````