Skip to main content
GET
/
connected_accounts
/
{accountId}
/
balances
TypeScript
const response: Promise<FireblocksResponse<ConnectedAccountBalancesResponse>> = fireblocks.connectedAccountsBeta.getConnectedAccountBalances(connectedAccountsBetaApiGetConnectedAccountBalancesRequest);
{
  "data": [
    {
      "assetId": "BTC",
      "availableAmount": "100.00",
      "totalAmount": "120.00",
      "balanceType": "FUNDING",
      "balanceName": "Trader1 Wallet"
    }
  ],
  "total": 2,
  "next": "eyJwYWdlIjoyfQ=="
}

Documentation Index

Fetch the complete documentation index at: https://fireblocks-43c4b3ee-chore-add-cli.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

accountId
string
required

The ID of the account to fetch balances for.

Minimum string length: 1

Query Parameters

pageSize
integer

Page size for pagination.

Required range: 1 <= x <= 1000
pageCursor
string

Page cursor for pagination.

Response

Account balances response

data
object[]
required

Flat balance row for a single asset within an account and wallet type. One row per (assetId, balanceType).

Example:
[
{
"assetId": "BTC",
"availableAmount": "100.00",
"totalAmount": "120.00",
"balanceType": "FUNDING",
"balanceName": "Trader1 Wallet"
}
]
total
integer

Total number of balance rows by query.

Example:

2

next
string

A cursor for the next page of results, if available.

Example:

"eyJwYWdlIjoyfQ=="