The Balance endpoints give you real-time visibility into your Hello Clever account funds. Use the balance details endpoint to see a current snapshot across all balance types, and the balance history endpoint to audit how your balance has changed over a specified period, including payments received, refunds issued, and top-ups.
These endpoints support AUD balances only. To query balances or balance history in any other currency, use the v2 Balance API, which covers every currency configured on your account.

Get balance details

GET /v1/balances/detail
Retrieve a real-time breakdown of all balance types in your account.

Balance types

Response fields

string
Currency code (AUD).
number
Funds available immediately for any transaction, in AUD.
number
Funds pending credit from successful payments, in AUD.
number
Funds reserved for pending refunds, disputes, or payouts, in AUD.
number
Reserved funds held as a security buffer, in AUD.
number
Available balance excluding rolling reserve funds, in AUD.
string
ISO 8601 timestamp of when the balance snapshot was taken.

Code example


Get balance history

GET /v1/balances/history
Access a detailed history of all balance changes within a specified date range. This includes incoming payments, refunds, top-ups, payouts, and any other activity that affects your account balance.
For multi-currency balance history, use GET /v2/balances/history instead. It returns records across every currency on your account and includes a per-transaction fee breakdown. See migrating from v1 balance history for the parameter and response differences.

Query parameters

string
required
Start of the date range in ISO 8601 format (e.g. 2026-01-01).
string
required
End of the date range in ISO 8601 format (e.g. 2026-04-17).
number
default:"1"
Page number for paginated results.
number
default:"20"
Number of records per page.

Response fields

array
List of balance history entries.
number
Total number of balance history entries matching the query.
number
Current page number.

Code example