Skip to main content
GET
/
api
/
v1
/
report
/
lifts
Get lifts
curl --request GET \
  --url https://{subdomain}.mtnmanager.com/api/v1/report/lifts
[
  {
    "uuid": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "lift_type": "gondola",
    "status": "open",
    "high_speed": true,
    "wait_time_minutes": 123,
    "area_uuid": "<string>",
    "area_name": "<string>",
    "area_display_order": 123,
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Response includes

For each lift:
  • Identification: UUID, name, slug
  • Type: Gondola, quad, triple, etc.
  • Status: Open, closed, on hold, or unknown
  • Wait time: Estimated wait in minutes (if available)
  • High speed: Whether it’s a detachable/high-speed lift
  • Area: Which area of the mountain the lift serves

Lift types

ValueDescription
gondolaEnclosed cabin lift
tramAerial tramway
eight_pack8-person chairlift
six_pack6-person chairlift
quad4-person chairlift
triple3-person chairlift
double2-person chairlift
surface_liftGeneric surface lift
magic_carpetConveyor belt lift
t_barT-bar surface lift
platterButton/platter lift
rope_towRope tow lift
funicularInclined railway

Status values

ValueDescription
openLift is operating
closedLift is not operating
on_holdTemporarily stopped, may reopen
unknownStatus has not been set

Response

uuid
string
required

Unique identifier for the lift.

Example:

"550e8400-e29b-41d4-a716-446655440000"

name
string
required

Display name of the lift.

Example:

"Summit Express"

slug
string
required

URL-friendly identifier for the lift.

Example:

"summit-express"

lift_type
enum<string>
required

Type of lift (gondola, quad, etc.).

Available options:
gondola,
tram,
eight_pack,
six_pack,
quad,
triple,
double,
magic_carpet,
t_bar,
platter,
rope_tow,
funicular,
other
status
enum<string>
required

Current operational status (open, closed, on_hold, or unknown).

Available options:
open,
closed,
on_hold,
unknown
high_speed
boolean
required

Whether this is a high-speed/detachable lift.

wait_time_minutes
integer<int64> | null

Current estimated wait time in minutes, if available.

Example:

5

area_uuid
string | null

UUID of the area this lift belongs to, if assigned.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

area_name
string | null

Name of the area this lift belongs to, if assigned.

Example:

"Summit Area"

area_display_order
integer<int32> | null

Display order of the area for sorting purposes.

updated_at
string<date-time> | null

When this lift's information was last updated.