POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (vaultSummaries)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "vaultSummaries"
}'
[
  {
    "vaultAddress": "<string>",
    "name": "<string>",
    "leader": "<string>",
    "totalShares": "<string>",
    "tvl": "<string>",
    "sharePrice": "<string>",
    "pnl1D": "<string>",
    "pnl7D": "<string>",
    "pnl30D": "<string>",
    "pnlAllTime": "<string>",
    "maxDD": "<string>",
    "isOpen": true,
    "minDeposit": "<string>"
  }
]
The 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 vault
  • leader (string) — Address of the vault leader/manager who controls trading decisions

Vault metrics

  • totalShares (string) — Total number of shares issued by the vault
  • tvl (string) — Total value locked in the vault expressed in USD
  • sharePrice (string) — Current price per share (typically starts at 1.0)

Performance metrics

  • pnl1D (string) — 1-day profit and loss percentage
  • pnl7D (string) — 7-day profit and loss percentage
  • pnl30D (string) — 30-day profit and loss percentage
  • pnlAllTime (string) — All-time profit and loss percentage since vault inception
  • maxDD (string) — Maximum drawdown percentage (worst peak-to-trough decline)

Investment information

  • isOpen (boolean) — Whether the vault is currently accepting new deposits
  • minDeposit (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
Vault status:
  • Open vaults: isOpen: true - accepting new investors
  • Closed vaults: isOpen: false - not accepting new deposits
Share pricing:
  • Share price reflects cumulative vault performance
  • Initial share price typically starts at 1.0
  • Price increases/decreases based on trading performance

Example request

Shell
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "vaultSummaries"}' \
  https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info

Use case

The info 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
This endpoint is particularly valuable for investors looking to participate in managed trading strategies through Hyperliquid’s vault system, providing all the essential information needed to make informed investment decisions and monitor vault performance over time.

Body

application/json

Response

200 - application/json

Summary information for all available vaults

List of vault summaries with performance and metadata