> ## 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.

# Event markets

> List all markets under one event.

List every outcome market under a known event. Useful once you have an `event_id` from [Search events](/search/search-events) and want all the tradable outcomes — for example, every strike on a Kalshi BTC event or every candidate on a Polymarket election.

## Parameters

<ParamField path="event_id" type="string" required>
  Event identifier (e.g. `KXFEDDECISION-26MAR`).
</ParamField>

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -H "X-API-Key: your_api_key" \
    "https://api.oddpool.com/search/events/KXFEDDECISION-26MAR/markets"
  ```

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

  response = requests.get(
      "https://api.oddpool.com/search/events/KXFEDDECISION-26MAR/markets",
      headers={"X-API-Key": "your_api_key"}
  )
  markets = response.json()
  ```
</CodeGroup>

## Response

Returns the same shape as [`/search/markets`](/search/search-markets), one row per outcome market under the event.
