Skip to content

Get account balances

Request

Retrieve real-time account balances for all currencies associated with your business. This endpoint returns the current balance for each currency wallet associated with your business account.

Security
BearerAuth
Path
client_idintegerrequired

The ID of the business.

Example:123
GET
/v1/businesses/{client_id}/balance
curl -i -X GET \
  https://public.letsweel.com/v1/businesses/123/balance \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
Array [
balancenumberrequired

Account balance amount as a decimal number

Example:123.45
currencystringrequired

ISO 4217 currency code

Example:"AUD"
]
Response
[ { "balance": 123.45, "currency": "AUD" } ]