GET
/
v1
/
perps
/
aster
/
markets
/
{symbol}
/
candles
Get Candles
curl --request GET \
  --url https://api.example.com/v1/perps/aster/markets/{symbol}/candles

Upstream Mapping

Maps to Aster’s GET /fapi/v1/klines?symbol=<SYMBOL>USDT&interval=<interval>.

Request

symbol
string
required
Market symbol
interval
string
required
Candle interval: 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w
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/aster/markets/ETH/candles?interval=1h"
Response format matches the Hyperliquid candles endpoint.