Skip to main content
GET
/
api
/
v1
/
report
/
hours
Get operating hours
curl --request GET \
  --url https://{subdomain}.mtnmanager.com/api/v1/report/hours
{
  "open_days": [
    {
      "date": "2023-12-25",
      "day_of_week": "<string>",
      "is_open": true,
      "opens_at": "<string>",
      "closes_at": "<string>",
      "closure_reason": "extreme_cold",
      "special_event": "<string>"
    }
  ],
  "schedules": [
    {
      "days_string": "<string>",
      "days_recurrence": [
        3
      ],
      "time_string": "<string>",
      "opens_at": "<string>",
      "closes_at": "<string>",
      "in_effect": true,
      "effective_string": "<string>",
      "effective_from": "2023-12-25",
      "effective_to": "2023-12-25"
    }
  ]
}

Response includes

  • Open days: List of all scheduled open days with times
  • Schedules: Recurring patterns (e.g., “Weekends 9am-4pm”)

Open days

Each day includes:
  • Date: Calendar date (YYYY-MM-DD)
  • Day of week: Full name (e.g., “Saturday”)
  • Is open: Whether the resort operates that day
  • Times: Opening and closing times in 24-hour format
  • Closure reason: If closed, why (weather, maintenance, etc.)
  • Special event: Any special event that day

Schedules

Recurring schedules include:
  • Days string: Human-readable (e.g., “Saturday & Sunday”)
  • Time string: Human-readable (e.g., “9:00 a.m. to 4:00 p.m.”)
  • In effect: Whether this schedule is currently active
  • Effective dates: Start and end dates for the schedule

Closure reasons

ValueDescription
extreme_coldDangerously cold temperatures
high_windsWind speeds too high for safe operation
snow_conditionsInsufficient or unsafe snow
mechanical_issuesEquipment maintenance required

Response

Complete operating hours response for the public API.

Contains both a list of individual open days and the recurring schedule patterns, providing flexibility for different display needs.

Complete operating hours response for the public API.

Contains both a list of individual open days and the recurring schedule patterns, providing flexibility for different display needs.

open_days
object[]
required

List of all days the resort is open (or has special closure overrides). Ordered chronologically, spanning from the earliest scheduled date to the latest scheduled date in the operating hour rules.

schedules
object[]
required

Recurring schedule patterns currently in effect or upcoming. Excludes single-day overrides and past schedules.