gethttps://api-sandbox.circle.com/v1/businessAccount/balances
Retrieves the balance of funds that are available for use.
The wallet ID of the wallet for which to retrieve the balances. If not provided, the default is the main wallet of the account.
You can get wallet IDs associated with your account using the Core API for Institutions.
1{
2 "data": {
3 "available": [
4 {
5 "amount": "3.14",
6 "currency": "USD"
7 }
8 ],
9 "unsettled": [
10 {
11 "amount": "3.14",
12 "currency": "USD"
13 }
14 ]
15 }
16}