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 currently support AUD balances only. Support for additional currencies is under development.

Get balance details

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

Balance types

Response fields

currency
string
Currency code (AUD).
available_balance
number
Funds available immediately for any transaction, in AUD.
incoming_balance
number
Funds pending credit from successful payments, in AUD.
outgoing_balance
number
Funds reserved for pending refunds, disputes, or payouts, in AUD.
rolling_reserve_balance
number
Reserved funds held as a security buffer, in AUD.
withdrawable_balance
number
Available balance excluding rolling reserve funds, in AUD.
retrieved_at
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.

Query parameters

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

Response fields

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

Code example