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.

Response

Successfully retrieved balances.

data
object

Available and unsettled balances of the merchant.

I