GET
/
events
/
{ticker}
/
candlesticks
cURL
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/events/{ticker}/candlesticks
{
  "adjusted_end_ts": 123,
  "market_candlesticks": [
    [
      {
        "end_period_ts": 123,
        "open_interest": 123,
        "price": {
          "close": 123,
          "close_dollars": "0.2300",
          "high": 123,
          "high_dollars": "0.2300",
          "low": 123,
          "low_dollars": "0.2300",
          "mean": 123,
          "mean_dollars": "0.2300",
          "open": 123,
          "open_dollars": "0.2300",
          "previous": 123,
          "previous_dollars": "0.2300"
        },
        "volume": 123,
        "yes_ask": {
          "close": 123,
          "close_dollars": "0.2300",
          "high": 123,
          "high_dollars": "0.2300",
          "low": 123,
          "low_dollars": "0.2300",
          "open": 123,
          "open_dollars": "0.2300"
        },
        "yes_bid": {
          "close": 123,
          "close_dollars": "0.2300",
          "high": 123,
          "high_dollars": "0.2300",
          "low": 123,
          "low_dollars": "0.2300",
          "open": 123,
          "open_dollars": "0.2300"
        }
      }
    ]
  ],
  "market_tickers": [
    "<string>"
  ]
}

Path Parameters

ticker
string
required

Ticker

Response

adjusted_end_ts
integer

Adjusted end timestamp if the requested candlesticks would be larger than maxAggregateCandidates.

market_candlesticks
object[][]

Array of market candlestick arrays, one for each market in the event.

market_tickers
string[]

Array of market tickers in the event.