Skip to main content

Get Historical Index Price Candlestick

Frequency limit: 20 times/1s (IP)

Description

Query the historical K-line data of contract index price, and return a maximum of 200 pieces of data.

HTTP Request

  • GET /api/v2/mix/market/history-index-candles
Request Example
curl "https://api.cointr.com/api/v2/mix/market/history-index-candles?symbol=BTCUSDT&granularity=5m&endTime=1691329771000&limit=100&startTime=1688824171000&productType=usdt-futures"

Request Parameters

ParameterTypeRequiredDescription
symbolStringYesTrading pair
productTypeStringYesProduct type
USDT-FUTURES USDT professional futures
COIN-FUTURES Mixed futures
USDC-FUTURES USDC professional futures
SUSDT-FUTURES USDT professional futures demo
SCOIN-FUTURES Mixed futures demo
SUSDC-FUTURES USDC professional futures demo
granularityStringYesK-line particle size
- 1m(1 minute)
- 3m(3 minutes)
- 5m(5 minutes)
- 15m(15 minutes)
- 30m(30 minutes)
- 1H( 1 hour)
- 4H(4 hours)
- 6H(6 hours)
- 12H(12 hours)
- 1D(1 day)
- 3D ( 3 days)
- 1W (1 week)
- 1M (monthly line)
- 6Hutc (UTC 6 hour line)
- 12Hutc (UTC 12 hour line)
- 1Dutc (UTC 1-day line)
- 3Dutc (UTC 3-day line)
- 1Wutc (UTC weekly line)
- 1Mutc (UTC monthly line)
startTimeStringNoThe start time is to query the k-lines after this time
According to the different time granularity, the corresponding time unit must be rounded down to be queried.
The millisecond format of the Unix timestamp, such as 1672410780000
Request data after this start time (the maximum time query range is 90 days)
endTimeStringNoThe end time is to query the k-lines before this time
According to the different time granularity, the corresponding time unit must be rounded down to be queried.
The millisecond format of the Unix timestamp, such as 1672410780000
Request data before this end time (the maximum time query range is 90 days)
limitStringNoDefault: 100, maximum: 200
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1695795177323,
"data": [
[
"1691328900000",
"29803",
"29803",
"29803",
"29803",
"0",
"0"
],
[
"1691329200000",
"29803",
"29803",
"29803",
"29803",
"0",
"0"
]
]
}

Response Parameters

ParameterTypeDescription
index[0]StringMilliseconds format of timestamp Unix, e.g. 1597026383085
index[1]StringEntry price
index[2]StringHighest price
index[3]StringLowest price
index[4]StringExit price(Only include the finished K line data)
index[5]StringTrading volume of the base coin
index[6]StringTrading volume of quote currency