Skip to main content

Kline/Candlestick Data

Get Kline/candlestick data for a symbol. Each Kline represents one symbol; the open time of each Kline can be treated as a unique ID.

HTTP Request

  • GET /api/v3/klines

Weight(IP): 1

Request Parameters

NameTypeMandatoryDescription
symbolstringYES
intervalENUMYESENUM: Kline Interval
startTimelongNOStart time, Unix millisecond timestamp
endTimelongNOEnd time, Unix millisecond timestamp
limitintegerNODefault 500; max 500.

Response Parameters

IndexDescription
0Open time
1Open
2High
3Low
4Close
5Volume
6Close time
7Quote asset volume

Response

[
[
1640804880000,
"47482.36",
"47482.36",
"47416.57",
"47436.1",
"3.550717",
1640804940000,
"168387.3"
]
]