Mark Price Kline
Get mark price kline data
HTTP Request
GET /derivatives/v3/public/mark-price-kline
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| category | false | string | Product type. linear,inverse. Default: linear, but in the response category shows "" |
| symbol | true | string | Symbol name |
| interval | true | string | Kline interval. 1 3 5 15 30 60 120 240 360 720 D M W |
| start | true | integer | The start timestamp (ms) |
| end | true | integer | The end timestamp (ms) |
| limit | false | integer | Limit for data size per page. [1, 1000]. Default: 200 |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| symbol | string | Symbol name |
| category | string | Product type. Keeps empty string "" when category is not passed |
| list | array |
|
Request Example
- inverse
GET /derivatives/v3/public/mark-price-kline?symbol=BTCUSD&interval=1&start=1670261100000&end=1670261280000&category=inverse HTTP/1.1
Host: api.bybit.com
Response Example
- inverse
{
"retCode": 0,
"retMsg": "OK",
"result": {
"symbol": "BTCUSD",
"category": "inverse",
"list": [
[
"1670261280000",
"17064.76",
"17068.45",
"17063.5",
"17067"
],
[
"1670261220000",
"17062.5",
"17064.88",
"17062.5",
"17064.76"
],
[
"1670261160000",
"17064",
"17064",
"17062.5",
"17062.5"
],
[
"1670261100000",
"17072",
"17072",
"17064",
"17064"
]
]
},
"retExtInfo": {},
"time": 1671968706092
}