GET
/
portfolio
/
settlements
Get Settlements
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/portfolio/settlements
{
  "cursor": "<string>",
  "settlements": [
    {
      "market_result": "<string>",
      "no_count": 123,
      "no_total_cost": 123,
      "revenue": 123,
      "settled_time": "<any>",
      "ticker": "<string>",
      "yes_count": 123,
      "yes_total_cost": 123
    }
  ]
}

Query Parameters

limit
integer

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

ticker
string

Restricts the response to settlements in a specific market.

event_ticker
string

Restricts the response to settlements in a single event.

min_ts
integer

Restricts the response to settlements after a timestamp.

max_ts
integer

Restricts the response to settlements before a timestamp.

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.