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

Upstream Mapping

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

Request

symbol
string
required
Market symbol
startTime
number
Start timestamp in milliseconds
endTime
number
End timestamp in milliseconds

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/hyperliquid/markets/BTC/funding
Example Response
[
  {
    "fundingRate": "0.0001",
    "markPrice": "67540.0",
    "timestamp": 1712000000000
  }
]

Predicted Funding Rates

Hyperliquid also supports predicted (next) funding rates for all markets:
curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/hyperliquid/funding/predicted
Predicted funding is a Hyperliquid-only feature. Aster does not support this endpoint.