GET
/
v1
/
perps
/
hyperliquid
/
markets
/
{symbol}
/
ticker
Get Ticker
curl --request GET \
  --url https://api.example.com/v1/perps/hyperliquid/markets/{symbol}/ticker

Upstream Mapping

Maps to Hyperliquid’s POST /info with { "type": "activeAssetCtx", "coin": "<symbol>" }.

Request

symbol
string
required
Market symbol (e.g., BTC)

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/hyperliquid/markets/BTC/ticker
Example Response
{
  "symbol": "BTC",
  "lastPrice": "67542.1",
  "markPrice": "67540.0",
  "indexPrice": "67538.5",
  "high24h": "68200.0",
  "low24h": "66800.0",
  "volume24h": "15234.56",
  "change24h": "1.2",
  "openInterest": "45678.90",
  "fundingRate": "0.0001",
  "nextFundingTime": 1712003600000
}