1. Account
Fusion Developer Platform
  • Getting started with Fusion
    • Overview
    • API key generation
    • Rate limits
  • API
    • Getting started
    • Market data
      • Get server time
      • Get tickers
      • Get trading pairs
      • Get orderbook
      • Get candles
      • Get assets
    • Account
      • Get account
        GET
      • Get account balances
        GET
    • Trading
      • Orders
        • Get orders
        • Create order
        • Get order by ID
        • Cancel order by ID
      • Trades
        • Get trades
        • Get trade by ID
  • MCP
    • Getting started
    • Available tools
  • CLI
    • Getting Started
    • Commands
  1. Account

Get account balances

GET
https://api.fusion.bitpanda.com/v1/account/balances
Returns the authenticated account's asset balances, including available and locked amounts.

Request

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.fusion.bitpanda.com/v1/account/balances?currency=BTC' \
--header 'x-api-key: <YOUR_API_KEY>'
Response Response Example
200 - success
[
    {
        "symbol": "BTC",
        "available": "1.57593193",
        "locked": "0.74832374"
    },
    {
        "symbol": "ETH",
        "available": "15.20340128",
        "locked": "2.18499324"
    }
]
Modified at 2026-06-26 13:06:15
Previous
Get account
Next
Get orders
Built with