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

# Get the current balance

> Retrieves the current balance.



## OpenAPI

````yaml /openapi.yaml get /ledger/balance
openapi: 3.0.0
info:
  title: HelloPay API
  description: HelloPay Backend API Documentation
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /ledger/balance:
    get:
      tags:
        - Ledger
      summary: Get the current balance
      description: Retrieves the current balance.
      operationId: LedgerController_getBalance
      parameters: []
      responses:
        '200':
          description: Balance for the organization
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BalanceResponseDto'
        '401':
          description: Unauthorized
components:
  schemas:
    BalanceResponseDto:
      type: object
      properties:
        createdAt:
          format: date-time
          type: string
          description: The creation date of the balance
          example: '2021-01-01T00:00:00.000Z'
        updatedAt:
          format: date-time
          type: string
          description: The update date of the balance
          example: '2021-01-01T00:00:00.000Z'
        organizationId:
          type: string
          description: The organization ID
          example: 123e4567-e89b-12d3-a456-426614174000
        id:
          type: string
          description: The ID of the balance
          example: 123e4567-e89b-12d3-a456-426614174000
        availableBalance:
          type: number
          description: The available balance
          example: 1000
        postedBalance:
          type: number
          description: The posted balance
          example: 1000
        unsettledBalance:
          type: number
          description: The unsettled amount
          example: 1000
        currency:
          type: string
          description: The currency
          example: COP
      required:
        - createdAt
        - updatedAt
        - organizationId
        - id
        - availableBalance
        - postedBalance
        - unsettledBalance
        - currency

````