# Balance

Push balance changes for `address`.

> **No auth.** Raw on-chain balances only (no USD-value or equity aggregation — compute client-side if needed).

## Subscribe

```json
{ "channel": "balance", "address": "0xabc…def" }
```

## When It Pushes

* A fill happened (debits / credits).
* Funding settlement.
* Deposit arrived.
* Withdrawal.
* Internal transfer.

## Payload

Top-level:

|  Field  | Type   | REST equivalent  |
| :-----: | ------ | ---------------- |
|   `a`   | string | `address`        |
| `coins` | array  | per-coin entries |

Per-coin entry:

| Field | Type         | REST equivalent     |
| :---: | ------------ | ------------------- |
|  `i`  | integer      | `coin_id`           |
|  `b`  | string       | `balance`           |
|  `s`  | string       | `spot_order_frozen` |
|  `t`  | string       | `transfer_frozen`   |
|  `l`  | string       | `isolated_balance`  |
|  `c`  | integer (ms) | `created_time`      |
|  `u`  | integer (ms) | `updated_time`      |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lynxtrade.world/websocket/user-channels/balance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
