Skip to main content
GET
/
v1
/
businessAccount
/
balances
List all balances
curl --request GET \
  --url https://api-sandbox.circle.com/v1/businessAccount/balances \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "available": [
      {
        "amount": "3.14",
        "currency": "USD"
      }
    ],
    "unsettled": [
      {
        "amount": "3.14",
        "currency": "USD"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

walletId
string

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.

Response

Successfully retrieved balances.

data
object

Available and unsettled balances of the merchant.