# List Events

Retrieves a list of tradable events under a series. Each event represents a specific question or market (e.g., '2026-27 College Football National Championship Winner'). Filter by series_symbol to get events for a specific series.

# OpenAPI definition

```json
{
  "info": {
    "title": "Webull Open API Reference",
    "description": "application.yml\\ncom\\ni18n\\nMETA-INF\\nstatic\\n\\r\\n",
    "contact": {
      "name": "",
      "url": "",
      "email": ""
    },
    "version": "2.0",
    "x-logo": {
      "url": "static/png/logo.png"
    }
  },
  "servers": [
    {
      "url": "https://us-global-openapi.uat.webullbroker.com"
    }
  ],
  "path": "/market-data/instruments/event-contracts/events/list",
  "method": "get",
  "tags": [
    "Instruments"
  ],
  "description": "Retrieves a list of tradable events under a series. Each event represents a specific question or market (e.g., '2026-27 College Football National Championship Winner'). Filter by series_symbol to get events for a specific series.",
  "operationId": "eventListUsingGET",
  "parameters": [
    {
      "name": "series_symbol",
      "in": "query",
      "description": "series symbol",
      "required": false,
      "schema": {
        "type": "string"
      },
      "example": "KXNCAAF"
    },
    {
      "name": "status",
      "in": "query",
      "description": "status, ACTIVE=event is open for trading; INACTIVE=event is closed or settled, default:ACTIVE",
      "required": false,
      "schema": {
        "type": "string",
        "default": "ACTIVE"
      },
      "example": "ACTIVE"
    },
    {
      "name": "pagination_key",
      "in": "query",
      "description": "Pagination key returned from previous page response. Pass null or omit for first page.",
      "required": false,
      "schema": {
        "type": "string"
      },
      "example": "eyJ2IjoxLCJwYWdlSW5kZXgiOjJ9"
    },
    {
      "name": "access_token",
      "in": "header",
      "description": "User's authenticated token.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "reqid",
      "in": "header",
      "description": "The unique ID for this request. Suggest using UUID.",
      "schema": {
        "type": "string"
      },
      "example": "2e46d5a4-bef9-4507-8cda-98f85d2f770c"
    }
  ],
  "responses": {
    "200": {
      "description": "OK",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "data": {
                "type": "array",
                "description": "Data list",
                "items": {
                  "type": "object",
                  "properties": {
                    "symbol": {
                      "type": "string",
                      "description": "Event symbol",
                      "example": "KXNCAAF-27"
                    },
                    "name": {
                      "type": "string",
                      "description": "Event name",
                      "example": "College Football National Championship Winner"
                    },
                    "status": {
                      "type": "string",
                      "description": "status, eg:ACTIVE=event is open for trading；INACTIVE=event is closed or settled, default:ACTIVE",
                      "example": "ACTIVE"
                    },
                    "series_id": {
                      "type": "integer",
                      "description": "Series ID",
                      "format": "int32",
                      "example": 152917
                    },
                    "event_id": {
                      "type": "integer",
                      "description": "Event ID",
                      "format": "int32",
                      "example": 152006
                    },
                    "short_name": {
                      "type": "string",
                      "description": "Event short name",
                      "example": "2026-27"
                    },
                    "strike_date": {
                      "type": "string",
                      "description": "strike date,Only present for sports category events. Represents the settlement date/period of the event.",
                      "example": "2026-10-28"
                    },
                    "strike_period": {
                      "type": "string",
                      "description": "strike period, Only present for sports category events. Represents the settlement date/period of the event."
                    },
                    "mutually_exclusive": {
                      "type": "boolean",
                      "description": "mutually exclusive, true or false",
                      "example": true
                    }
                  },
                  "description": "Data list",
                  "title": "EventVo"
                }
              },
              "pagination_key": {
                "type": "string",
                "description": "Pagination key for next page. null means no more data.",
                "example": "eyJ2IjoxLCJwYWdlSW5kZXgiOjJ9"
              }
            },
            "title": "EventVoPageResponse"
          }
        }
      }
    }
  },
  "postman": {
    "name": "List Events",
    "description": {
      "content": "Retrieves a list of tradable events under a series. Each event represents a specific question or market (e.g., '2026-27 College Football National Championship Winner'). Filter by series_symbol to get events for a specific series.",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "market-data",
        "instruments",
        "event-contracts",
        "events",
        "list"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [
        {
          "disabled": false,
          "description": {
            "content": "series symbol",
            "type": "text/plain"
          },
          "key": "series_symbol",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "status, ACTIVE=event is open for trading; INACTIVE=event is closed or settled, default:ACTIVE",
            "type": "text/plain"
          },
          "key": "status",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Pagination key returned from previous page response. Pass null or omit for first page.",
            "type": "text/plain"
          },
          "key": "pagination_key",
          "value": ""
        }
      ],
      "variable": []
    },
    "header": [
      {
        "disabled": false,
        "description": {
          "content": "(Required) User's authenticated token.",
          "type": "text/plain"
        },
        "key": "access_token",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "The unique ID for this request. Suggest using UUID.",
          "type": "text/plain"
        },
        "key": "reqid",
        "value": ""
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "method": "GET"
  }
}
```
