Skip to main content
GET
/
workspaces
/
{workspaceId}
/
balances
/
{balanceId}
Get balance by ID
curl --request GET \
  --url https://api.bron.org/workspaces/{workspaceId}/balances/{balanceId}
{
  "accountId": "<string>",
  "accountType": "vault",
  "assetId": "<string>",
  "balanceId": "<string>",
  "workspaceId": "<string>",
  "createdAt": "<string>",
  "networkId": "<string>",
  "symbol": "<string>",
  "totalBalance": "<string>",
  "updatedAt": "<string>",
  "withdrawableBalance": "<string>"
}

Path Parameters

workspaceId
string
required
balanceId
string
required

Response

OK

accountId
string
required

Account ID

Example:

"w9jh0gf3w9qaxlre7enezt17"

accountType
enum<string>
required

Type of the account. See details

Available options:
vault
assetId
string
required

Asset ID

Example:

"10001"

balanceId
string
required

Balance ID

Example:

"rcyv3tsc53opdiz7xgrujvg0"

workspaceId
string
required

Workspace ID

Example:

"e191u51yxnykins6fahd"

createdAt
string

Created at timestamp

Example:

"1744369502340"

networkId
string

Network ID

Example:

"BTC"

symbol
string

Asset symbol

Example:

"BTC"

totalBalance
string

The overall balance of a account

Example:

"2.00021084"

updatedAt
string

Last updated at timestamp

Example:

"1744372384276"

withdrawableBalance
string

Balance available for withdrawal

Example:

"1.00021084"