Unified REST APIMarket data

Get Market Metadata

Get market information and trading rules

GET
/getSymbolInfo

Authorization

ApiKeyAuth
X-API-KEY<token>

In: header

Query Parameters

symbols?string

Filter to specific markets (comma-separated)

marketType?enum<string>

Optional market type filter. Use "spot" for spot markets or "perp" for perpetual/futures markets.

Available options: spotperp

Response Body

application/json

curl -X GET "https://api.hypereth.io/v2/hyperliquid/getSymbolInfo?symbols=BTC%2CETH"
{
  "symbols": [
    {
      "symbol": "BTC",
      "marketType": "future",
      "base": "BTC",
      "quote": "USDT",
      "settle": "USDT",
      "status": "trading",
      "precision": {
        "priceDecimals": 4,
        "quantityDecimals": 8,
        "tickSize": "0.0001",
        "stepSize": "0.00000001",
        "minOrderSize": "0.001"
      },
      "dexProcessedTimestamp": 1710000000800
    }
  ],
  "dataTime": 1710000000000,
  "dexReceivedTimestamp": 1710000000900,
  "hyperethTimestamp": 1710000001000
}