Skip to main content
POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (allPerpMetas)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "allPerpMetas"
}
'
{}
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
The info endpoint with type: "allPerpMetas" retrieves metadata for all perpetual DEXes on Hyperliquid. Returns an array of universe and margin table configurations for each perp DEX.
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 "allPerpMetas".

Response

The response is an array of objects, one per perp DEX, each containing:
  • universe (array) — Array of perpetual assets with name, szDecimals, maxLeverage, marginTableId, and optional onlyIsolated and isDelisted flags.
  • marginTables (array) — Array of margin table tuples with table ID and margin tier configurations.

Example request

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

Example response

[
  {
    "universe": [
      {
        "szDecimals": 5,
        "name": "BTC",
        "maxLeverage": 40,
        "marginTableId": 56
      },
      {
        "szDecimals": 4,
        "name": "ETH",
        "maxLeverage": 25,
        "marginTableId": 55
      }
    ],
    "marginTables": []
  }
]

Use case

The info endpoint with type: "allPerpMetas" is useful for:
  • Retrieving perpetual metadata across all DEXes in a single call
  • Building multi-DEX trading interfaces
  • Comparing available assets and leverage limits across different perp DEXes
  • Caching exchange-wide perpetual configuration data

Body

application/json
type
enum<string>
default:allPerpMetas
required

Request type

Available options:
allPerpMetas

Response

200 - application/json

Array of perp metadata for all DEXes

The response is of type object.

Last modified on February 17, 2026