Get mark price candle data
This endpoint allows users to get historical mark price candles for a specific market and time interval.
/api/v1/kline/markQuery Parameters
Field
Type
Need
Description
Example
/api/v1/kline/mark?symbol=BTC&interval=1m&start_time=1742243160000&end_time=1742243220000Response
{
"success": true,
"data": [
{
"t": 1764126720000,
"T": 1764126780000,
"s": "BTC",
"i": "1m",
"o": "87701",
"c": "87687.303362",
"h": "87739",
"l": "87687.303362",
"v": "0.84106",
"n": 62
},
{
"t": 1764126780000,
"T": 1764126840000,
"s": "BTC",
"i": "1m",
"o": "87684.118667",
"c": "87654",
"h": "87684.118667",
"l": "87645",
"v": "4.5997",
"n": 91
}
],
"error": null,
"code": null
}Field
Type
Description
Code Example (Python)
Last updated