GET
/
payout
/
v1
/
getBalance
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1/getBalance \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Ledger balance for the account",
  "data": {
    "balance": "214735.50",
    "availableBalance": "173980.50"
  }
}

Please use this Authorization token in headers to call any payout API (Refresh this page if the token is expired)

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Ledger balance for the account"

data
object