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

# List event series

> Get a paginated list of event series

## Authentication

Public — no authentication required.

## Query parameters

<ParamField query="page" type="integer" default="1">
  Page number.
</ParamField>

<ParamField query="size" type="integer" default="50">
  Results per page (max 100).
</ParamField>

## Example request

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://relay.bayse.markets/v1/pm/events/series?page=1&size=20"
  ```

  ```javascript Node.js theme={null}
  const params = new URLSearchParams({ page: 1, size: 20 });
  const response = await fetch(
    `https://relay.bayse.markets/v1/pm/events/series?${params}`
  );
  const data = await response.json();
  ```

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

  resp = requests.get(
      'https://relay.bayse.markets/v1/pm/events/series',
      params={'page': 1, 'size': 20},
  )
  data = resp.json()
  ```

  ```go Go theme={null}
  req, _ := http.NewRequest("GET", "https://relay.bayse.markets/v1/pm/events/series", nil)
  q := req.URL.Query()
  q.Add("page", "1")
  q.Add("size", "20")
  req.URL.RawQuery = q.Encode()
  resp, _ := http.DefaultClient.Do(req)
  ```
</CodeGroup>

## Response

<ResponseField name="series" type="array">
  List of event series objects.

  <Expandable title="series fields">
    <ResponseField name="id" type="string">UUID of the series.</ResponseField>
    <ResponseField name="slug" type="string">Unique slug identifier (e.g. `crypto-btc-1h`).</ResponseField>
    <ResponseField name="displayName" type="string">Human-readable name for the series.</ResponseField>
    <ResponseField name="description" type="string">Description of the series.</ResponseField>
    <ResponseField name="category" type="string">Category (e.g. `CRYPTO`).</ResponseField>
    <ResponseField name="intervalType" type="string">Time interval between events: `FIFTEEN_MINUTE`, `HOURLY`, `SIX_HOURLY`, or `DAILY`.</ResponseField>
    <ResponseField name="assetSymbol" type="string">Asset symbol (e.g. `BTC`, `ETH`, `SOL`).</ResponseField>
    <ResponseField name="automationType" type="string">Automation type identifier.</ResponseField>
    <ResponseField name="iconUrl" type="string">URL to the series icon.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="pagination" type="object">
  <Expandable title="pagination fields">
    <ResponseField name="page" type="integer">Current page.</ResponseField>
    <ResponseField name="size" type="integer">Results per page.</ResponseField>
    <ResponseField name="lastPage" type="integer">Last available page.</ResponseField>
    <ResponseField name="totalCount" type="integer">Total number of series.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "series": [
      {
        "id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
        "slug": "crypto-btc-1h",
        "displayName": "Bitcoin Hourly Markets",
        "description": "Bitcoin price prediction markets that run every hour.",
        "category": "CRYPTO",
        "intervalType": "HOURLY",
        "assetSymbol": "BTC",
        "automationType": "CRYPTO_PRICE_UP_DOWN_HOURLY"
      },
      {
        "id": "e2d3c4b5-a697-8901-bcde-f12345678901",
        "slug": "crypto-eth-1d",
        "displayName": "Ethereum Daily Markets",
        "description": "Ethereum price prediction markets that run daily.",
        "category": "CRYPTO",
        "intervalType": "DAILY",
        "assetSymbol": "ETH",
        "automationType": "CRYPTO_PRICE_UP_DOWN_DAILY"
      }
    ],
    "pagination": {
      "page": 1,
      "size": 20,
      "lastPage": 1,
      "totalCount": 12
    }
  }
  ```
</ResponseExample>
