TransfersGet Wallet Balance

Wallet Balance

The Wallet Balance endpoint allows you to check the balance of your wallet for a specific currency. This is useful for ensuring you have sufficient funds before initiating a transfer.

Endpoint

GET https://mainapi.cashonrails.com/api/v1/wallet_balance/{currency}

Request Headers

HeaderTypeDescription
AuthorizationstringBearer token with your secret key

Parameters

ParameterTypeDescription
currencystringThe currency code (e.g., NGN, USD)

Sample Request

GET https://mainapi.cashonrails.com/api/v1/wallet_balance/NGN

Sample cURL Request

curl -X GET https://mainapi.cashonrails.com/api/v1/wallet_balance/NGN \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_SECRET_KEY"

Sample Response

{
    "success": true,
    "status": "00",
    "data": {
        "balance": "100000",
        "pending": "100"
    }
}

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
statusstringStatus code of the request
dataobjectContains the wallet balance details
balancestringThe balance amount in the wallet
pendingstringThe amount pending in the wallet