> ## Documentation Index
> Fetch the complete documentation index at: https://polymarketcn.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 用戶頻道

> 訂閱用戶訂單和餘額更新

<Callout type="success">
  還沒有帳號？[點擊這裡註冊 Polymarket](https://polymarket.com/?r=2026VIP) 並完成入金，才能用錢包私鑰為訂單籤名、實際成交。
</Callout>

<Warning>
  **法律合規提醒**：在使用 Polymarket 服務或 API 前，請確認您所在地區的法律規定。Polymarket 目前不支援比利時、法國、新加坡、泰國、中國大陸等地區，政策可能隨時變化。
</Warning>

用戶頻道提供您帳戶的實時更新。

## 訂閱用戶頻道

```python theme={null}
subscribe_msg = {
    "type": "subscribe",
    "channel": "user"
}
ws.send(json.dumps(subscribe_msg))
```

## 接收的更新

* 訂單狀態變化
* 新成交
* 餘額更新
* 持倉變化

## 下一步

<CardGroup cols={2}>
  <Card title="市場頻道" icon="chart-line" href="/api-tutorial/websocket/market-channel">
    訂閱市場數據
  </Card>

  <Card title="快速開始" icon="rocket" href="/api-tutorial/websocket/quickstart">
    WebSocket 快速開始
  </Card>
</CardGroup>
