# Get museum hours Get upcoming museum operating hours. Endpoint: GET /museum-hours 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" - `page` (integer) Page number to retrieve. Example: 2 - `limit` (integer) Number of days per page. Example: 15 ## Response 200 fields (application/json): - `date` (string, required) Date the operating hours apply to. Example: "2024-12-31" - `timeOpen` (string, required) Time the museum opens on a specific date. Uses 24 hour time format (). Example: "09:00" - `timeClose` (string, required) Time the museum closes on a specific date. Uses 24 hour time format (). Example: "18:00" ## 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"