kalshi_get_events
Retrieve all Kalshi events with filters for status, tickers, and time ranges. Use pagination to access event data for market analysis and trading decisions.
Instructions
Get Events Get all events. This endpoint excludes multivariate events. To retrieve multivariate events, use the GET /events/multivariate endpoint. All events are accessible through this endpoint, even if their associated markets are older than the historical cutoff. Calls GET /events.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Parameter to specify the number of results per page. Defaults to 200. Maximum value is 200. | |
| cursor | No | Parameter to specify the pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page. | |
| status | No | Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status. | |
| tickers | No | Filter by specific event tickers. Comma-separated list of event tickers to retrieve. | |
| min_close_ts | No | Filter events with at least one market with close timestamp greater than this Unix timestamp (in seconds). | |
| series_ticker | No | Filter by series ticker | |
| min_updated_ts | No | Filter events with metadata updated after this Unix timestamp (in seconds). Use this to efficiently poll for changes. | |
| with_milestones | No | If true, includes related milestones as a field alongside events. | |
| with_nested_markets | No | 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. Historical markets settled before the historical cutoff will not be included. |