Skip to main content

Endpoint

POST /info

Request Body

ParameterTypeDescription
type*stringMust be "notionalMeta"

Response

{
  "perpMarkets": {
    "00020000": {
      "assetId": "00020000",
      "symbol": "BTC-USDC",
      "venueName": "BTC",
      "venueIndex": 0,
      "marginAsset": "00012710",
      "marketConfig": {
        "maxLeverage": 10,
        "szDecimals": 5,
        "maxOpenInterestUSD": 100000000
      }
    }
  },
  "assets": {
    "00012710": {
      "assetId": "00012710",
      "symbol": "USDC",
      "displayName": "USDC",
      "assetIndex": "0",
      "tokenId": "0x...",
      "spotMarketIndex": "0",
      "szDecimals": 6,
      "collateralPolicy": {
        "ltv": 1,
        "haircut": 0,
        "borrowEnabled": true,
        "targetBorrow": 800000000,
        "maxBorrow": 1000000000,
        "maxDeposit": 5000000000
      }
    }
  },
  "marginTables": [],
  "spotPairs": {
    "00030001": {
      "pairId": "00030001",
      "name": "HYPE/USDC",
      "tokens": ["0001abcd", "00012710"]
    }
  }
}

Notes

  • Asset ids are 8-character hex strings without a 0x prefix. - The response includes spotPairs in addition to perpMarkets, assets, and marginTables. - Spot asset metadata includes spotMarketIndex and szDecimals.