# Get broker account balance Get broker account balances in a specific asset or all assets. Endpoint: GET /custody/v2/broker/account/balances Version: 1.0.1 Security: SSO_TOKEN ## Query parameters: - `orgName` (string, required) Custody / liquidity provider (LP) / exchange / customer organization name - `isLP` (boolean, required) Whether the organization is an LP () or customer (). - `currency` (string) Currency code. Omit this parameter to get balances for all currencies. ## Response 200 fields (application/json): - `custodyOrg` (string) Custody organization ID associated with the balances. Example: "CustodyOrgName" - `customerOrg` (string) Customer organization ID associated with the balances. Example: "CustomerOrgName" - `balances` (array) - `balances.currency` (string) Asset symbol. Example: "BTC" - `balances.balance` (number) Available balance. Example: 10.12922 - `balances.holds` (number) Active holds, if any. Example: 1.0092 - `balances.available` (number) Total amount available. Example: 9.12002