Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

GET /v2/all-perp-metas
Returns metadata for all 9 perpetual DEXes in a single call, including the native HyperLiquid DEX and all HIP-3 builder-deployed DEXes.

Response

Array of 9 objects, each containing a universe array of asset metadata:
[
  {
    "universe": [
      {"szDecimals": 5, "name": "BTC", "maxLeverage": 40, "marginTableId": 56},
      {"szDecimals": 4, "name": "ETH", "maxLeverage": 25, "marginTableId": 55}
    ]
  }
]
FieldTypeDescription
universe[].namestringCoin name. Prefixed for builder DEXes (xyz:AAPL, flx:GOLD)
universe[].szDecimalsnumberSize decimal precision
universe[].maxLeveragenumberMaximum leverage for this asset
universe[].marginTableIdnumberReferences a margin table
DEX 0 is native HyperLiquid (229 assets, no prefix). DEXes 1-8 are builder-deployed with prefixed coin names.

Example

curl -H "x-api-key: YOUR_KEY" https://hyper.polynode.dev/v2/all-perp-metas
Use /v2/perp-dexes for full DEX details including deployer addresses, fee recipients, and OI caps.