Skip to main content
GET
/
margin
/
trades
Get Trades
curl --request GET \
  --url https://external-api.kalshi.com/trade-api/v2/margin/trades
{
  "trades": [
    {
      "trade_id": "<string>",
      "ticker": "<string>",
      "count": "10.00",
      "price": "<string>",
      "created_time": "2023-11-07T05:31:56Z"
    }
  ],
  "cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

ticker
string
required

Market ticker to retrieve trades for

limit
integer
default:100

Number of results per page

Required range: 1 <= x <= 1000
cursor
string

Pagination cursor from a previous response

min_ts
integer<int64>

Filter trades after this Unix timestamp

max_ts
integer<int64>

Filter trades before this Unix timestamp

Response

Trades retrieved successfully

trades
object[]
required
cursor
string
required