Skip to main content
GET
/
multivariate_event_collections
Get Multivariate Event Collections
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/multivariate_event_collections
{
  "multivariate_contracts": [
    {
      "collection_ticker": "<string>",
      "series_ticker": "<string>",
      "title": "<string>",
      "description": "<string>",
      "open_date": "2023-11-07T05:31:56Z",
      "close_date": "2023-11-07T05:31:56Z",
      "associated_events": [
        {
          "ticker": "<string>",
          "is_yes_only": true,
          "size_max": 123,
          "size_min": 123,
          "active_quoters": [
            "<string>"
          ]
        }
      ],
      "associated_event_tickers": [
        "<string>"
      ],
      "is_ordered": true,
      "is_single_market_per_event": true,
      "is_all_yes": true,
      "size_min": 123,
      "size_max": 123,
      "functional_description": "<string>"
    }
  ],
  "cursor": "<string>"
}

Query Parameters

status
enum<string>

Only return collections of a certain status. Can be unopened, open, or closed.

Available options:
unopened,
open,
closed
associated_event_ticker
string

Only return collections associated with a particular event ticker.

series_ticker
string

Only return collections with a particular series ticker.

limit
integer

Specify the maximum number of results.

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

The Cursor represents a pointer to the next page of records in the pagination. This optional parameter, when filled, should be filled with the cursor string returned in a previous request to this end-point.

Response

Collections retrieved successfully

multivariate_contracts
object[]
required

List of multivariate event collections.

cursor
string

The Cursor represents a pointer to the next page of records in the pagination. Use the value returned here in the cursor query parameter for this end-point to get the next page containing limit records. An empty value of this field indicates there is no next page.

I