---
title: "Returns subaccount balances for given subaccount"
method: GET
path: "/v1/subaccount/balance"
tags: ["Subaccount"]
---

# Returns subaccount balances for given subaccount

`GET /v1/subaccount/balance`

## Query parameters

- `order` 'asc' | 'desc'
- `limit` integer
- `cursor` string
- `subaccountId` string, uuid, required
- `orderBy` 'tokenName' | 'updatedAt' | 'amount'

## Response `200`

- PageOfSubaccountBalanceDtos
  - `data` SubaccountBalanceDto[], required — Array of order subaccount balances
    - `amount` string, decimal, required — Token balance in native units expressed as a decimal (precision: 9)
    - `available` string, decimal, required — Portion of balance transferrable in native units expressed as a decimal (precision: 9)
    - `subaccountId` string, uuid, required — Id representing the subaccount
    - `tokenAddress` string, hex, required — ERC20 deposited token address (non-checksummed, zero address if virtual)
    - `tokenId` string, uuid, required — Id representing the token
    - `tokenName` string, required — The unique exchange defined token name driven by addToken onchain
    - `totalUsed` string, decimal, required — Portion of balance non-transferrable in native units expressed as a decimal (precision: 9)
    - `updatedAt` integer, required — Token balance last updated timestamp (ms since Unix Epoch)
  - `hasNext` boolean, required — Whether there are more objects to paginate through
  - `nextCursor` string — Pointer to the next page in pagination dataset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

---

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