info endpoint with type: "vaultSummaries" retrieves summary information for all available investment vaults on the Hyperliquid exchange. This endpoint provides comprehensive performance metrics, vault metadata, and investment details for all active trading vaults managed by various vault leaders.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
type(string, required) — The request type. Must be"vaultSummaries"to retrieve vault summaries.
Response
The response is an array of vault summary objects containing performance and metadata:Vault identification
vaultAddress(string) — Contract address of the vault (42-character hexadecimal)name(string) — Human-readable name of the vaultleader(string) — Address of the vault leader/manager who controls trading decisions
Vault metrics
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 (typically starts at 1.0)
Performance metrics
pnl1D(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)
Investment information
isOpen(boolean) — Whether the vault is currently accepting new depositsminDeposit(string) — Minimum deposit amount required to invest in the vault
Understanding vault performance
Performance periods:- 1D, 7D, 30D: Short to medium-term performance indicators
- All-time: Total performance since vault inception
- Maximum drawdown: Risk indicator showing worst historical decline
- Open vaults:
isOpen: true- accepting new investors - Closed vaults:
isOpen: false- not accepting new deposits
- Share price reflects cumulative vault performance
- Initial share price typically starts at 1.0
- Price increases/decreases based on trading performance
Example request
Shell
Example response
Use case
Theinfo endpoint with type: "vaultSummaries" is essential for applications that need to:
- Investment discovery: Browse and compare available investment vaults
- Performance analysis: Evaluate vault performance across different time periods
- Risk assessment: Analyze maximum drawdown and volatility metrics
- Portfolio allocation: Make informed decisions about vault investments
- Vault comparison: Compare TVL, performance, and risk metrics across vaults
- Investment interfaces: Build vault browsing and selection tools
- Due diligence: Research vault leaders and their trading track records
- Performance tracking: Monitor favorite vaults and their ongoing performance
- Investment dashboards: Display comprehensive vault marketplace data
- Risk management: Assess vault risk profiles before investing
- Market analysis: Understand overall vault ecosystem performance
- Educational tools: Provide vault performance data for learning platforms
- API integrations: Feed vault data into investment management systems
- Notification systems: Track vault performance changes and status updates