> ## Documentation Index
> Fetch the complete documentation index at: https://staging-docs.orderly.network/llms.txt
> Use this file to discover all available pages before exploring further.

# useHoldingStream

> Hook to receive real-time token holding balances via WebSocket.

Receive current user holdings and auto update via Websockets.

* [Tech docs](/sdks/tech-doc/modules/orderly_network_hooks#useholdingstream)

### Example

```ts theme={null}
const { usdc } = useHoldingStream();
```

The USDC object contains:

```json theme={null}
{
  "frozen": 0,
  "holding": 100,
  "pending_short": 0,
  "token": "USDC",
  "updated_time": 1732754429399
}
```
