Skip to main content
GET
/
api
/
v1
/
candles
Get Candles
curl --request GET \
  --url https://api.example.com/api/v1/candles
Returns OHLCV (Open, High, Low, Close, Volume) candlestick data from Binance Futures. Data is available for 100+ coins with up to 2 years of history on hourly and daily intervals.

Parameters

ParameterTypeDefaultDescription
symbolstringBTCUSDTTrading pair (e.g. ETHUSDT, SOLUSDT)
intervalstring1hCandle interval: 1h or 1d
limitnumber100Number of candles to return (max 1500)

Example Request

curl -X GET "https://krovn.io/api/v1/candles?symbol=BTCUSDT&interval=1h&limit=3" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "symbol": "BTCUSDT",
  "interval": "1h",
  "data": [
    {
      "open_time": "2026-03-21T10:00:00.000Z",
      "o": "87245.20",
      "h": "87512.80",
      "l": "87100.00",
      "c": "87389.50",
      "volume": "1284.532",
      "taker_buy_vol": "687.291"
    },
    {
      "open_time": "2026-03-21T11:00:00.000Z",
      "o": "87389.50",
      "h": "87650.00",
      "l": "87310.40",
      "c": "87598.30",
      "volume": "1102.187",
      "taker_buy_vol": "612.445"
    },
    {
      "open_time": "2026-03-21T12:00:00.000Z",
      "o": "87598.30",
      "h": "87790.10",
      "l": "87450.00",
      "c": "87720.60",
      "volume": "985.643",
      "taker_buy_vol": "534.102"
    }
  ]
}
Candles are returned in ascending chronological order (oldest first). Volume fields are in base asset (e.g. BTC).