GET
/
v1
/
rwas
/
hyperliquid
/
markets
List Markets
curl --request GET \
  --url https://api.example.com/v1/rwas/hyperliquid/markets

Request

dex
string
Filter by dex name (e.g., stocksPerp)

Example

curl -H "X-API-Key: $API_KEY" \
  "https://api.perps.studio/v1/rwas/hyperliquid/markets?dex=stocksPerp"
Example Response
[
  {
    "symbol": "AAPL",
    "name": "Apple Inc.",
    "dex": "stocksPerp",
    "pricePrecision": 2,
    "sizePrecision": 2,
    "minSize": "0.01",
    "maxLeverage": 20
  }
]