Skip to main content
GET
/
api
/
v1
/
report
/
overview
Get overview
curl --request GET \
  --url https://{subdomain}.mtnmanager.com/api/v1/report/overview
{
  "status": "open",
  "season": "winter",
  "notes": "<string>",
  "total_runs": 123,
  "total_lifts": 123,
  "opens_at": "<string>",
  "closes_at": "<string>",
  "updated_at": "2023-11-07T05:31:56Z",
  "open_runs": 123,
  "groomed_runs": 123,
  "runs_updated_at": "2023-11-07T05:31:56Z",
  "open_lifts": 123,
  "lifts_updated_at": "2023-11-07T05:31:56Z",
  "open_summer_trails": 123,
  "total_summer_trails": 123,
  "summer_trails_updated_at": "2023-11-07T05:31:56Z"
}
Returns a lightweight snapshot of the resort’s current operational state.

Response includes

  • Status: Whether the resort is open or closed
  • Hours: Today’s opening and closing times
  • Season: Current operating season (winter, summer, or closed)
  • Statistics: Open runs, open lifts, groomed runs
  • Notes: Any announcements or condition updates

When to use this endpoint

Use /api/v1/report/status when you need:
  • A quick “is the resort open?” check
  • Summary statistics for a compact display
  • Today’s operating hours
This endpoint is more lightweight than /api/v1/report when you don’t need the full details of individual runs and lifts.

Response

Current resort status with operating hours and statistics.

Provides a snapshot of the resort's current operational state including today's scheduled hours (calculated from operating hour rules), run/lift counts, and the current season.

Current resort status with operating hours and statistics.

Provides a snapshot of the resort's current operational state including today's scheduled hours (calculated from operating hour rules), run/lift counts, and the current season.

status
enum<string>
required

Current operational status of the resort (open or closed). This is calculated based on the current time relative to today's scheduled hours.

Available options:
open,
closed
season
enum<string>
required

Current operating season (winter, summer, or closed).

Available options:
winter,
summer,
closed
notes
string
required

General notes or announcements about current conditions.

Example:

"Fresh powder overnight! All lifts spinning."

total_runs
integer<int64>
required

Total number of runs at the resort.

total_lifts
integer<int64>
required

Total number of lifts at the resort.

opens_at
string | null

Today's scheduled opening time in 24-hour format (HH:MM). null if the resort is not scheduled to open today.

Example:

"09:00"

closes_at
string | null

Today's scheduled closing time in 24-hour format (HH:MM). null if the resort is not scheduled to open today.

Example:

"16:00"

updated_at
string<date-time> | null

When the resort status was last updated.

open_runs
integer<int64> | null

Number of runs currently open. Only included if the runs status feature is enabled.

groomed_runs
integer<int64> | null

Number of runs groomed within the last 24 hours. Only included if the runs grooming feature is enabled.

runs_updated_at
string<date-time> | null

When run statuses were last updated.

open_lifts
integer<int64> | null

Number of lifts currently open. Only included if the lifts status feature is enabled.

lifts_updated_at
string<date-time> | null

When lift statuses were last updated.

open_summer_trails
integer<int64> | null

Number of summer trails currently open. Only included if the summer trails feature is enabled.

total_summer_trails
integer<int64> | null

Total number of summer trails at the resort.

summer_trails_updated_at
string<date-time> | null

When summer trail statuses were last updated.