> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oddpool.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Recent events

> Latest event listings without a search query.

The most recently discovered events across both venues. For watermarked polling within a known series, use [Search events](/search/search-events) with `discovered_after` instead.

## Parameters

<ParamField query="exchange" type="string">
  `kalshi` or `polymarket`.
</ParamField>

<ParamField query="limit" type="integer" default="30">
  1-100.
</ParamField>

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -H "X-API-Key: your_api_key" \
    "https://api.oddpool.com/search/recent/events?exchange=polymarket"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.oddpool.com/search/recent/events",
      headers={"X-API-Key": "your_api_key"},
      params={"exchange": "polymarket"}
  )
  events = response.json()
  ```
</CodeGroup>
