> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mtnmanager.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MtnManager API

> The MtnManager API provides real-time access to your ski resort’s public operational data. Use it to display current conditions on your website, mobile app, or digital signage.

## What you can access

<CardGroup cols={2}>
  <Card title="Overview" icon="chart-bar" href="/developer/api/overview">
    Complete resort information including open/closed status, statistics, and announcements
  </Card>

  <Card title="Snow Conditions" icon="snowflake" href="/developer/api/snow">
    Base depth, surface conditions, and snowfall accumulation
  </Card>

  <Card title="Lifts" icon="cable-car" href="/developer/api/lifts">
    Lift status, types, wait times, and operational details
  </Card>

  <Card title="Runs" icon="mountain" href="/developer/api/runs">
    All runs with difficulty ratings, open/closed status, and grooming information
  </Card>

  <Card title="Terrain Parks" icon="flag-pennant" href="/developer/api/terrain-parks">
    Terrain park status, and list of features
  </Card>

  <Card title="Summer Trails" icon="person-hiking" href="/developer/api/summer-trails">
    Summer trail status, and other information like type and difficulty
  </Card>

  <Card title="Operating Hours" icon="calendar" href="/developer/api/hours">
    Daily schedules and recurring operating hour patterns
  </Card>

  <Card title="Weather" icon="cloud-sun" href="/developer/api/weather">
    Current conditions and forecasts (included in the complete resort endpoint)
  </Card>
</CardGroup>

## Key features

* **No authentication required** - The API is public and read-only
* **Real-time data** - Conditions updated directly by resort staff
* **Metric and imperial units** - All measurements available in both unit systems
* **Comprehensive responses** - Get all data in one request or query specific endpoints

## Authentication

The MtnManager API is **public and read-only**. No authentication is required.

## Response format

All endpoints return JSON responses. Successful responses return a `200` status code.

## Getting started

<Steps>
  <Step title="Get your resort's subdomain">
    Your resort has a unique subdomain like `your-resort.mtnmanager.com`. Replace `your-resort` with your resort's unique subdomain when using the API.
  </Step>

  <Step title="Fetch resort data">
    Make a GET request to the `/api/v1/report` endpoint to get complete resort information:

    <CodeGroup>
      ```bash cURL theme={null}
      curl https://your-resort.mtnmanager.com/api/v1/report
      ```
    </CodeGroup>
  </Step>

  <Step title="Use the data">
    The response includes everything about the resort:

    * Resort info (name, timezone, unit preferences)
    * Current status (open/closed, operating hours)
    * All runs with status and grooming info
    * All lifts with status and wait times
    * Snow conditions and snowfall totals
    * Weather data (if enabled)
  </Step>
</Steps>
