curl --request GET \
--url https://api.cashful.africa/api/canary/balance \
--header 'Authorization: Bearer <token>'{
"id": "balance_merchant_456",
"merchantId": "merchant_456",
"amount": 50000,
"currency": "ZAR",
"available": 50000,
"pending": 0,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}Retrieves the merchant’s master balance available for payouts
curl --request GET \
--url https://api.cashful.africa/api/canary/balance \
--header 'Authorization: Bearer <token>'{
"id": "balance_merchant_456",
"merchantId": "merchant_456",
"amount": 50000,
"currency": "ZAR",
"available": 50000,
"pending": 0,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the merchant whose balance is being requested. If omitted, defaults to the authenticated merchant.