---
title: "Get Kline"
method: GET
path: "/api/v1/market/kline"
tags: ["Market"]
---

# Get Kline

`GET /api/v1/market/kline`

Query for historical klines (also known as candles/candlesticks). Charts are returned in groups based on the requested interval.

## Query parameters

- `symbol` string, required
- `interval` '1m' | '3m' | '5m' | '15m' | '30m' | '1h' | '2h' | '4h' | '6h' | '12h' | '1d' | '3d' | '1w' | '1M', required
- `start_time` string, date-time, nullable
- `end_time` string, date-time, nullable
- `limit` integer, nullable

## Response `200`

Klines

- GetKlineResponse — Kline response.
  - `list` KlineSnapshot[], required
    - `Q` string, required — Taker buy quote asset volume. Binance `Q` field.
    - `T` string, date-time, required — Candle close time (ms).
    - `V` string, required — Taker buy base asset volume. Binance `V` field.
    - `c` string, required — Close - the price of the last trade in this candle (closing price).
    - `h` string, required — High - the highest trade price within this interval.
    - `i` '1m' | '3m' | '5m' | '15m' | '30m' | '1h' | '2h' | '4h' | '6h' | '12h' | '1d' | '3d' | '1w' | '1M', required
    - `l` string, required — Low - the minimum trade price within this interval.
    - `n` string, required — Trade count. The number of trades included in this candle
    - `o` string, required — Open - the price of the first trade in this candle (opening price).
    - `t` string, date-time, required — Candle open time (ms).
    - `v` string, required — Volume. the trading volume for the candle
  - `symbol` string, required

---

[API](https://skmtc.net/ekidenfi/apis/ekiden-gateway.md) · [All operations](https://skmtc.net/ekidenfi/apis/ekiden-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ekidenfi/ekiden-gateway/revisions/75ffe546b73a/schema)
