Enkash Developer Portal
Home
Home
Login
  1. Bank Details
  • Back to home
  • Payout APIs
  • Encryption & Decryption Guide
    • Generate Authentication Token
  • Beneficiary
    • Add Beneficiary
    • Search Beneficiary
    • Delete Beneficiary
  • Transfer
    • Initiate Transfer
    • Initiate Batch Transfer
    • Search Payout Transfers
  • Bank Details
    • Retrieve Account Balance
      GET
    • Retrieve Bank Account Details
      GET
    • Add Funds to EnKash
      POST
    • Fetch Statement
      POST
  • Webhook
    • Create Webhook Configuration
    • Retrieve Webhook Data
  1. Bank Details

Retrieve Account Balance

Designing
GET
/api/v0/payout-account/balance
📌
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.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
fundSourceId
string 
required
This represents the ID of the fund source from which the transfer amount will be debited.
Example:
EKCI4XTWKC
debitAccountNumber
string 
optional
This is mandatory for connected banking payouts
Header Params
User-Agent
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://test.your-api-server.com/api/v0/payout-account/balance?fundSourceId=EKCI4XTWKC&debitAccountNumber=' \
--header 'User-Agent;'

Responses

🟢200Success
application/json
Body
totalBalance
number 
required
Example
{
    "totalBalance": 0
}
Modified at 2025-07-08 18:51:55
Previous
Search Payout Transfers
Next
Retrieve Bank Account Details
Built with