> ## 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.

# leadingVaults | Hyperliquid Info API

> Hyperliquid leadingVaults: list the vaults a user leads.

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

The Hyperliquid info endpoint with `type: "leadingVaults"` is used to list the vaults a user leads.

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

<Info>
  * Wire-equal to `POST api.hyperliquid.xyz/info` with `{"type": "leadingVaults", "user": "..."}`.
  * Returns one entry per vault the user leads (manages); the array is empty when the user leads none.
  * Each entry gives the vault's address and name; use <a href="https://goldrush.dev/docs/api-reference/hyperliquid-info/vault-details" target="_blank" rel="noopener noreferrer">vaultDetails</a> for the full breakdown.
  * User-keyed by the leader address.
</Info>

Returns the vaults that a user leads (manages), as an array of `{vaultAddress, name}` entries. The array is empty when the user does not lead 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="leadingVaults">
  Always `"leadingVaults"`.
</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": "leadingVaults",
      "user": "0x677d831aef5328190852e24f13c46cac05f984e7"
    }'
  ```

  ```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: "leadingVaults",
      user: "0x677d831aef5328190852e24f13c46cac05f984e7",
    }),
  });

  const vaults = 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": "leadingVaults",
          "user": "0x677d831aef5328190852e24f13c46cac05f984e7",
      },
  )

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

## Response

An array of vaults the user leads. Empty when the user leads none.

```json theme={null}
[
  {
    "vaultAddress": "0xdfc24b077bc1425ad1dea75bcb6f8158e10df303",
    "name": "Hyperliquidity Provider (HLP)"
  }
]
```

### Field descriptions

<ResponseField name="[n]" type="object">
  A vault the user leads.

  <Expandable title="properties">
    <ResponseField name="vaultAddress" type="string">Vault contract address (0x-prefixed hex).</ResponseField>
    <ResponseField name="name" type="string">Vault name.</ResponseField>
  </Expandable>
</ResponseField>

*Last reviewed: 2026-07-24*
