info
endpoint with type: "vaultSummaries"
retrieves summary information for all available vaults on the Hyperliquid exchange. This endpoint provides vault metadata including names, addresses, TVL, and relationship information for all vaults in the system.
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.
Data availabilityThis endpoint returns all available vaults in the system. If the response is an empty array, it indicates that no vaults are currently deployed on the network.For detailed information about a specific vault, use the
vaultDetails
endpoint.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 the following fields:Vault identification
name
(string) — Name of the vaultvaultAddress
(string) — Vault’s blockchain address (42-character hexadecimal)leader
(string) — Address of the vault leader/manager
Vault metrics
tvl
(string) — Total Value Locked in the vaultisClosed
(boolean) — Whether the vault is closed to new depositscreateTimeMillis
(number) — Timestamp when vault was created (in milliseconds since Unix epoch)
Relationship information
relationship
(object) — Vault relationship structuretype
(string) — Type of vault relationship:"normal"
,"child"
, or"parent"
data
(object, optional) — Additional relationship datachildAddresses
(array of strings) — If parent vault, contains addresses of child vaults
Understanding vault relationships
Vault types:- Normal vaults: Standard standalone vaults
- Parent vaults: Vaults that manage or control other child vaults
- Child vaults: Vaults that are controlled by a parent vault
- Open vaults:
isClosed: false
- accepting new deposits - Closed vaults:
isClosed: true
- not accepting new deposits
Example request
Shell
Example response
Use case
Theinfo
endpoint with type: "vaultSummaries"
is essential for applications that need to:
- Vault discovery: Browse all available vaults in the system
- TVL analysis: Monitor total value locked across different vaults
- Vault status: Check which vaults are open or closed for deposits
- Relationship mapping: Understand parent-child vault relationships
- Vault listing: Build interfaces showing all available vaults
- Leader tracking: Identify vault managers and their addresses
- Historical analysis: Track when vaults were created
- Vault hierarchies: Map complex vault structures with parent-child relationships
- System overview: Get a complete picture of all vaults in the ecosystem
- Integration points: Feed vault data into portfolio management systems
- Monitoring systems: Track new vault deployments and closures
- Data aggregation: Collect comprehensive vault metadata for analysis
Body
application/json
Request type to retrieve vault summaries for all available vaults
Available options:
vaultSummaries
Response
200 - application/json
Summary information for all available vaults
List of vault summaries
Name of the vault
Vault's blockchain address
Address of the vault leader/manager
Total Value Locked in the vault
Whether the vault is closed to new deposits
Vault relationship information
Timestamp when vault was created (in milliseconds)