# Retrieve Account Balance 

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/payout-account/balance:
    get:
      summary: 'Retrieve Account Balance '
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to fetch the current balance of your EnKash Payments
        account. This helps you monitor your available funds before initiating
        payouts or other transactions.

        :::
      tags:
        - Payouts/APIs - Payout/Bank Details
      parameters:
        - name: fundSourceId
          in: query
          description: >-
            This represents the ID of the fund source from which the transfer
            amount will be debited.
          required: true
          example: EKCI4XTWKC
          schema:
            type: string
        - name: debitAccountNumber
          in: query
          description: This is mandatory for connected banking payouts
          required: false
          example: ''
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  totalBalance:
                    type: number
                x-apidog-orders:
                  - totalBalance
                required:
                  - totalBalance
          headers: {}
          x-apidog-name: Success
      security:
        - bearer: []
      x-apidog-folder: Payouts/APIs - Payout/Bank Details
      x-apidog-status: designing
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-8990273-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
