---
title: "Get Account Balances"
method: GET
path: "/v1/account/balances"
tags: ["Account"]
---

# Get Account Balances

`GET /v1/account/balances`

Get user's current account balances including buying power, asset values, and pending transactions

## Response `200`

User's current account balances

- GetAccountBalancesResponse
  - `balances` UserBalance[] — List of account balances by currency
    - `currentBalance` number — Current fiat currency balance, not including security values
    - `currency` string — Currency for this balance (e.g., USD)
    - `lastUpdated` string, date-time — Time of last balance change
    - `buyingPower` number — Unencumbered capital available for trading, factoring in all security valuations and open orders
    - `assetNotional` number — Aggregate notional value of all securities
    - `assetAvailable` number — Aggregate available collateral value of all securities
    - `pendingCredit` number — Aggregate value of all pending credits
    - `openOrders` number — Aggregate total notional value of open orders
    - `unsettledFunds` number — Aggregate total notional value of unsettled funds not yet available to trade
    - `pendingWithdrawals` PendingWithdrawal[] — List of active pending withdrawals
      - `id` string — Unique identifier for the withdrawal
      - `name` string — Account name
      - `balance` number — Balance to withdraw
      - `description` string — Description for the withdrawal request
      - `acknowledged` boolean — Whether the pending withdrawal has been acknowledged
      - `bankId` string — Bank ID of the recipient
      - `creationTime` string, date-time — Time the pending withdrawal was created
      - `destinationAccountName` string — Destination account name for the deposit
    - `marginRequirement` number — Aggregate margin requirement for event instrument positions
    - `balanceReservation` number, nullable — Aggregate total notional value of balance reservations

## Other responses

- `401` — Unauthorized - invalid or missing API key
- `500` — Internal server error

---

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