# List special events Return a list of upcoming special events at the museum. Endpoint: GET /special-events Version: 1.1.1 Security: MuseumPlaceholderAuth ## Query parameters: - `startDate` (string) Starting date to retrieve future operating hours from. Defaults to today's date. Example: "2023-02-23" - `endDate` (string) End of a date range to retrieve special events for. Defaults to 7 days after . Example: "2023-04-18" - `page` (integer) Page number to retrieve. Example: 2 - `limit` (integer) Number of days per page. Example: 15 ## Response 200 fields (application/json): - `eventId` (string, required) Identifier for a special event. - `name` (string, required) Name of the special event. - `location` (string, required) Location where the special event is held. - `eventDescription` (string, required) Description of the special event. - `dates` (array, required) List of planned dates for the special event. Example: ["2023-10-29"] - `price` (number, required) Price of a ticket for the special event. ## Response 400 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" ## Response 404 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed"