GET
/
portfolio
/
fills
Get Fills
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/portfolio/fills
{
  "cursor": "<string>",
  "fills": [
    {
      "action": "<string>",
      "count": 123,
      "created_time": "<any>",
      "is_taker": true,
      "no_price": 123,
      "order_id": "<string>",
      "side": "<string>",
      "ticker": "<string>",
      "trade_id": "<string>",
      "yes_price": 123
    }
  ]
}

Query Parameters

ticker
string

Restricts the response to trades in a specific market.

order_id
string

Restricts the response to trades related to a specific order.

min_ts
integer

Restricts the response to trades after a timestamp.

max_ts
integer

Restricts the response to trades before a timestamp.

limit
integer

Parameter to specify the number of results per page. Defaults to 100.

cursor
string

The Cursor represents a pointer to the next page of records in the pagination. Use the value returned from the previous response to get the next page.

Response

200 - application/json

The response is of type object.