GET
/
portfolio
/
orders
Get Orders
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/portfolio/orders
{
  "cursor": "<string>",
  "orders": [
    {
      "action": "<string>",
      "client_order_id": "<string>",
      "created_time": "<any>",
      "expiration_time": "<any>",
      "fill_count": 123,
      "initial_count": 123,
      "last_update_time": "<any>",
      "maker_fees": 123,
      "maker_fill_cost": 123,
      "no_price": 123,
      "order_group_id": "<string>",
      "order_id": "<string>",
      "queue_position": 123,
      "remaining_count": 123,
      "self_trade_prevention_type": "<string>",
      "side": "<string>",
      "status": "<string>",
      "taker_fees": 123,
      "taker_fill_cost": 123,
      "ticker": "<string>",
      "type": "<string>",
      "user_id": "<string>",
      "yes_price": 123
    }
  ]
}

Query Parameters

ticker
string

Restricts the response to orders in a single market.

event_ticker
string

Restricts the response to orders in a single event.

min_ts
integer

Restricts the response to orders after a timestamp, formatted as a Unix Timestamp.

max_ts
integer

Restricts the response to orders before a timestamp, formatted as a Unix Timestamp.

status
string

Restricts the response to orders that have a certain status: resting, canceled, or executed.

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.

limit
integer

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

Response

200 - application/json

The response is of type object.