Skip to main content
GET
/
accounts
/
{account_id}
/
cash-balances
List cash balances
curl --request GET \
  --url https://api.example.com/accounts/{account_id}/cash-balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "currency": "EUR",
    "total": "<string>",
    "available_for_trading": "<string>",
    "available_for_withdrawal": "<string>",
    "reserved": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
string
required

Response

OK

currency
enum<string>
required

The currency of the cash balance.

Available options:
EUR,
USD,
GBP
total
string
required

The total cash balance, including settled, unsettled and reserved cash.

available_for_trading
string
required

The portion of the cash balance available for placing buy orders, also known as buying power.

available_for_withdrawal
string
required

The portion of the cash balance available for withdrawal.

reserved
string
required

The portion of the cash balance that is reserved for currently executing orders or withdrawals.