---
title: "Get Account Balance"
method: GET
path: "/api/prime/trading/v1/accounts/{accountId}/balances"
tags: ["Accounts"]
---

# Get Account Balance

`GET /api/prime/trading/v1/accounts/{accountId}/balances`

Get balance information about a single trading account.

**Requires access token scope:** `trade_view`

## Path parameters

- `accountId` string, required

## Query parameters

- `includeUnsettledInAvailable` boolean

## Response `200`

An array of account balances

- object
  - `data` AccountBalance[], required — List of balance entries for a trading account
    - `currencyId` string, uuid, required — ID of the currency
    - `currency` string, required — Currency symbol
    - `balance` string, decimal, required — The total balance in the account
    - `heldBalance` string, decimal, required — The total balance reserved for some purpose, e.g. a pending withdrawal.
    - `unsettledHeldBalance` string, decimal, required — The total unsettled balance reserved for some purpose, e.g. a pending withdrawal.
    - `tradableBalance` string, decimal, required — The total balance available for trading
    - `withdrawableBalance` string, decimal, required — The total balance available for withdrawal

## Other responses

- `401` — Unauthorized - Invalid or missing authentication
- `403` — Forbidden - Insufficient permissions
- `500` — Internal Server Error

---

[API](https://skmtc.net/bitgo/apis/bitgo-api.md) · [All operations](https://skmtc.net/bitgo/apis/bitgo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitgo/bitgo-api/revisions/e445c15e5bee/schema)
