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

# userVaultEquities | Hyperliquid Info API

> Hyperliquid userVaultEquities: fetch a user's locked vault equity positions across all vaults they have deposited into.

<CardGroup cols={2}>
  <Card title="Credit Cost"> 1 per call</Card>
  <Card title="Processing"> Realtime</Card>
</CardGroup>

The Hyperliquid info endpoint with `type: "userVaultEquities"` is used to fetch a user's locked vault equity positions across all vaults they have deposited into.

<Tip>
  Estimate your monthly cost for this API using the [Pricing Calculator](/pricing-calculator?endpoint=%2Fapi-reference%2Fhyperliquid-info%2Fuser-vault-equities).
</Tip>

<Info>
  * Wire-equal to `POST api.hyperliquid.xyz/info` with `{"type": "userVaultEquities", "user": "..."}`.
  * For real-time push of vault deposit, withdrawal, and distribution events, subscribe to <a href="https://goldrush.dev/docs/api-reference/streaming-api/subscriptions/wallet-activity-stream" target="_blank" rel="noopener noreferrer">`walletTxs`</a> and read `LedgerVaultDeposit`, `LedgerVaultWithdraw`, and `LedgerVaultDistribution` entries.
</Info>

Returns the wallet’s per-vault equity: one entry per vault the user has deposited into, with the locked amount and the timestamp at which that equity becomes unlockable.

User-keyed. The result is `[]` for wallets that haven’t deposited into any vault.

## Endpoint

```
POST https://hypercore.goldrushdata.com/info
Authorization: Bearer <GOLDRUSH_API_KEY>
Content-Type: application/json
```

## Request

<ParamField body="type" type="string" required default="userVaultEquities">
  Always `"userVaultEquities"`.
</ParamField>

<ParamField body="user" type="string" required>
  The wallet address (lowercase 0x-prefixed hex).
</ParamField>

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://hypercore.goldrushdata.com/info \
    -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "type": "userVaultEquities",
      "user": "0x2b804617c6f63c040377e95bb276811747006f4b"
    }'
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch("https://hypercore.goldrushdata.com/info", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.GOLDRUSH_API_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      type: "userVaultEquities",
      user: "0x2b804617c6f63c040377e95bb276811747006f4b",
    }),
  });

  const equities = await response.json();
  ```

  ```python Python theme={null}
  import os, requests

  response = requests.post(
      "https://hypercore.goldrushdata.com/info",
      headers={"Authorization": f"Bearer {os.environ['GOLDRUSH_API_KEY']}"},
      json={
          "type": "userVaultEquities",
          "user": "0x2b804617c6f63c040377e95bb276811747006f4b",
      },
  )

  equities = response.json()
  ```
</CodeGroup>

## Response

An array of vault equity entries.

```json theme={null}
[
  {
    "vaultAddress": "0x1962905b0a2d0ce8907a92ed5f7a17fef3e1b53e",
    "equity": "5000.50",
    "lockedUntilTimestamp": 1741132800000
  }
]
```

### Field descriptions

<Note>
  `equity` is returned as a **decimal string**, preserving upstream precision. Do not parse it as a float - keep it as a string or use a fixed-precision decimal type.
</Note>

<ResponseField name="vaultAddress" type="string">Vault contract address (0x-prefixed hex).</ResponseField>
<ResponseField name="equity" type="string">User's equity in this vault, in USD.</ResponseField>
<ResponseField name="lockedUntilTimestamp" type="int">Unix timestamp in milliseconds at which this equity becomes unlockable.</ResponseField>

## Related endpoints

<CardGroup cols={2}>
  <Card title="userFills" href="/api-reference/hyperliquid-info/user-fills">fetch a user's most recent trade fills without specifying a time window.</Card>
  <Card title="userFillsByTime" href="/api-reference/hyperliquid-info/user-fills-by-time">fetch a user’s trade fills within a time window for P\&L recaps and tax ledger reconstruction.</Card>
  <Card title="userFunding" href="/api-reference/hyperliquid-info/user-funding">fetch a user's per-coin funding payment history within a time window for funding-only P\&L attribution.</Card>
  <Card title="userNonFundingLedgerUpdates" href="/api-reference/hyperliquid-info/user-non-funding-ledger-updates">fetch a user's non-funding USDC ledger history (deposits, withdrawals, transfers, vault flows) within a time…</Card>
</CardGroup>

*Last reviewed: 2026-06-13*
