info endpoint with type: "leadingVaults" retrieves information about all vaults managed by a specific vault leader on the Hyperliquid exchange. This endpoint provides comprehensive data about a vault leader’s managed funds, including performance metrics, vault configurations, and management details.
type (string, required) — The request type. Must be "leadingVaults" to retrieve vaults led by a specific user.user (string, required) — Address in 42-character hexadecimal format of the vault leader (e.g., 0x31ca8395cf837de08b24da3f660e77761dfb974b).vaultAddress (string) — Contract address of the vault (42-character hexadecimal)name (string) — Human-readable name of the vaultleader (string) — Address of the vault leader (matches the requested user)totalShares (string) — Total number of shares issued by the vaulttvl (string) — Total value locked in the vault expressed in USDsharePrice (string) — Current price per share reflecting cumulative performancepnl1D (string) — 1-day profit and loss percentagepnl7D (string) — 7-day profit and loss percentagepnl30D (string) — 30-day profit and loss percentagepnlAllTime (string) — All-time profit and loss percentage since vault inceptionmaxDD (string) — Maximum drawdown percentage (worst peak-to-trough decline)isOpen (boolean) — Whether the vault is currently accepting new depositsminDeposit (string) — Minimum deposit amount required to invest in the vaultcreatedTime (integer) — Vault creation timestamp in millisecondsleaderCommission (string) — Commission percentage taken by the vault leaderinfo endpoint with type: "leadingVaults" is essential for applications that need to:
Information about vaults led by the specified user
Contract address of the vault
Human-readable name of the vault
Address of the vault leader (should match the requested user)
Total number of shares issued by the vault
Total value locked in the vault (USD)
Current price per share
1-day profit and loss percentage
7-day profit and loss percentage
30-day profit and loss percentage
All-time profit and loss percentage
Maximum drawdown percentage
Whether the vault is open for new deposits
Minimum deposit amount required
Vault creation timestamp in milliseconds
Commission percentage taken by the vault leader