Skip to main content
GET
/
connected_accounts
TypeScript
const response: Promise<FireblocksResponse<ConnectedAccountsResponse>> = fireblocks.connectedAccountsBeta.getConnectedAccounts(connectedAccountsBetaApiGetConnectedAccountsRequest);
{
  "data": [
    {
      "id": "acc-123456",
      "name": "Main Venue Account",
      "providerId": "BRIDGE",
      "status": "APPROVED",
      "totalBalance": {
        "amount": "1201.15",
        "denominatedAssetId": "ea6c3cb7-355a-4ee3-82ff-267c69970214",
        "hasFullAssetCoverage": true
      },
      "manifest": {
        "assetTypes": [],
        "capabilities": [
          "DEPOSITS",
          "WITHDRAWALS"
        ]
      }
    },
    {
      "id": "acc-654321",
      "name": "Secondary Account",
      "providerId": "BRIDGE",
      "status": "WAITING_FOR_APPROVAL",
      "totalBalance": {
        "amount": "0.00",
        "denominatedAssetId": "ea6c3cb7-355a-4ee3-82ff-267c69970214",
        "hasFullAssetCoverage": false
      },
      "manifest": {
        "assetTypes": [],
        "capabilities": [
          "WITHDRAWALS"
        ]
      }
    }
  ],
  "total": 2,
  "next": "eyJwYWdlIjoyfQ=="
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

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

Query Parameters

mainAccounts
boolean
default:false

Whether to include only main accounts in the response.

pageSize
integer

Page size for pagination.

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

Page cursor for pagination.

Response

Get accounts response

data
object[]
required

List of connected accounts matching the query.

Example:
[
  {
    "id": "acc-123456",
    "name": "Main Venue Account",
    "providerId": "BRIDGE",
    "status": "APPROVED",
    "totalBalance": {
      "amount": "1201.15",
      "denominatedAssetId": "ea6c3cb7-355a-4ee3-82ff-267c69970214",
      "hasFullAssetCoverage": true
    },
    "manifest": {
      "assetTypes": [],
      "capabilities": ["DEPOSITS", "WITHDRAWALS"]
    }
  },
  {
    "id": "acc-654321",
    "name": "Secondary Account",
    "providerId": "BRIDGE",
    "status": "WAITING_FOR_APPROVAL",
    "totalBalance": {
      "amount": "0.00",
      "denominatedAssetId": "ea6c3cb7-355a-4ee3-82ff-267c69970214",
      "hasFullAssetCoverage": false
    },
    "manifest": {
      "assetTypes": [],
      "capabilities": ["WITHDRAWALS"]
    }
  }
]
total
integer

Total number of accounts by query.

Example:

2

next
string

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

Example:

"eyJwYWdlIjoyfQ=="