GET
/
markets
/
trades
Get Trades
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/markets/trades
{
  "cursor": "<string>",
  "trades": [
    {
      "count": 123,
      "created_time": "<any>",
      "no_price": 123,
      "taker_side": "<string>",
      "ticker": "<string>",
      "trade_id": "<string>",
      "yes_price": 123
    }
  ]
}

Query Parameters

limit
integer

Number of results per page. Defaults to 100. Maximum value is 1000.

cursor
string

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.

ticker
string

Filter trades by market ticker. Returns only trades for the specified market.

min_ts
integer

Filter trades that occurred after this Unix timestamp.

max_ts
integer

Filter trades that occurred before this Unix timestamp.

Response

200 - application/json

The response is of type object.