Skip to main content

Premium Index Price Kline

Get premium index price kline data

HTTP Request

GET /derivatives/v3/public/premium-index-price-kline

Request Parameters

ParameterRequiredTypeComments
categoryfalsestringProduct type. linear,inverse. Default: linear, but in the response category shows ""
symboltruestringSymbol name
intervaltruestringKline interval. 1 3 5 15 30 60 120 240 360 720 D M W
starttrueintegerThe start timestamp (ms)
endtrueintegerThe end timestamp (ms)
limitfalseintegerLimit for data size per page. [1, 1000]. Default: 200

Response Parameters

ParameterTypeComments
symbolstringSymbol name
categorystringProduct type. Keeps empty string "" when category is not passed
listarray
  • An string array of individual candle
  • Sort in reverse by start
  • The default collation within the array is start, open, high, low, close

Request Example

GET /derivatives/v3/public/premium-index-price-kline?symbol=BTCUSDT&interval=D&start=1668441600000&end=1668528000000 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"symbol": "BTCUSDT",
"category": "",
"list": [
[
"1668470400000",
"-0.000754",
"-0.001071",
"-0.001072",
"-0.001072"
]
]
},
"retExtInfo": {},
"time": 1671969006930
}