v3

OpenAPI 3.0.02026-07-31103181312.8 KB
events

Get Multivariate Events

Retrieve multivariate (combo) events. These are dynamically created events from multivariate event collections. Supports filtering by series and collection ticker.

get/events/multivariate

Query parameters

limitinteger

Number of results per page. Defaults to 100. Maximum value is 200.

cursorstring

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results.

series_tickerstring

Filter by series ticker

collection_tickerstring

Filter events by collection ticker. Returns only multivariate events belonging to the specified collection. Cannot be used together with series_ticker.

with_nested_marketsboolean

Parameter to specify if nested markets should be included in the response. When true, each event will include a 'markets' field containing a list of Market objects associated with that event.

Response

Multivariate events retrieved successfully

cursorstring required

Pagination cursor for the next page. Empty if there are no more results.

Example response

{
  "events": [
    {
      "markets": [
        {
          "yes_bid_dollars": "0.5600",
          "yes_bid_size_fp": "10.00",
          "yes_ask_dollars": "0.5600",
          "yes_ask_size_fp": "10.00",
          "no_bid_dollars": "0.5600",
          "no_ask_dollars": "0.5600",
          "last_price_dollars": "0.5600",
          "volume_fp": "10.00",
          "volume_24h_fp": "10.00",
          "open_interest_fp": "10.00",
          "notional_value_dollars": "0.5600",
          "previous_yes_bid_dollars": "0.5600",
          "previous_yes_ask_dollars": "0.5600",
          "previous_price_dollars": "0.5600",
          "liquidity_dollars": "0.5600",
          "settlement_value_dollars": "0.5600",
          "mve_selected_legs": [
            {
              "yes_settlement_value_dollars": "0.5600"
            }
          ]
        }
      ]
    }
  ]
}