# Leading vaults

> HyperCore private-preview documentation.

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

<Callout intent="info">
  This API is in private preview. Target October 2026; timing is subject to change.
</Callout>


# Leading vaults

Returns the leading-vault collection associated with a user when it is available.


<Note>

  **Available now.** This read is served at the interim endpoint today.

</Note>

## Request

`POST /{apiKey}/info`

| Parameter | Type   | Required | Description               |
| --------- | ------ | -------- | ------------------------- |
| `type`    | string | Yes      | Selects `leadingVaults`.  |
| `user`    | string | Yes      | Account address to query. |

```json
{
  "type": "leadingVaults",
  "user": "0x0000000000000000000000000000000000000000"
}
```

## Response fields

| Field        | Type   | Description                  |
| ------------ | ------ | ---------------------------- |
| `[]`         | array  | Leading-vault entries.       |
| `[].address` | string | Vault address.               |
| `[].name`    | string | Display name for the vault. |

## Response example

```json
[
  {
    "address": "0xdfc24b077bc1425ad1dea75bcb6f8158e10df303",
    "name": "Hyperliquidity Provider (HLP)"
  }
]
```

The native API requires the `user` parameter. The 2026-09-02 capture returned a populated entry with `address` and `name`.