Discover/whistlerblackcomb.com API
live

whistlerblackcomb.com APIwhistlerblackcomb.com

Real-time snow depth, lift counts, trail status, and weather forecasts for Whistler Blackcomb via a simple REST API. Four endpoints, no setup required.

Endpoints
4
Updated
3mo ago
Try it

No input parameters required.

api.parse.bot/scraper/fef81905-ae01-47ad-95c0-96695def1bfa/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/fef81905-ae01-47ad-95c0-96695def1bfa/get_mountain_conditions' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Get comprehensive mountain conditions including snow, weather, lift, and trail status for Whistler Blackcomb. Returns all available data in a single call.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "runs": "object - Trail counts with open and total keys",
    "lifts": "object - Lift counts with open and total keys",
    "resort": "string - Resort name",
    "new_snow": "object - Recent snowfall with overnight, twenty_four_hours, forty_eight_hours, seven_days sub-objects each containing inches and centimeters",
    "base_snow_depth": "object - Snow depth at summit, mid_mountain, base_area each containing inches and centimeters",
    "season_snowfall": "object - Total season snowfall with inches and centimeters",
    "snow_conditions": "string - Current snow quality description",
    "report_date_time": "string - Report timestamp in MM/DD/YYYY HH:MM:SS format",
    "terrain_percentage": "object - Terrain open percentage with open and total keys",
    "weather_commentary": "string - Detailed weather forecast in HTML format"
  },
  "sample": {
    "data": {
      "runs": {
        "open": "20",
        "total": "152"
      },
      "lifts": {
        "open": "5",
        "total": "5"
      },
      "resort": "Whistler Blackcomb",
      "new_snow": {
        "overnight": {
          "inches": "0",
          "centimeters": "0"
        },
        "seven_days": {
          "inches": "0",
          "centimeters": "0"
        },
        "forty_eight_hours": {
          "inches": "0",
          "centimeters": "0"
        },
        "twenty_four_hours": {
          "inches": "0",
          "centimeters": "0"
        }
      },
      "base_snow_depth": {
        "summit": {
          "inches": "0",
          "centimeters": "0"
        },
        "base_area": {
          "inches": "44",
          "centimeters": "114"
        },
        "mid_mountain": {
          "inches": "44",
          "centimeters": "114"
        }
      },
      "season_snowfall": {
        "inches": "316",
        "centimeters": "804"
      },
      "snow_conditions": "Spring",
      "report_date_time": "05/13/2026 16:54:00",
      "terrain_percentage": {
        "open": "13",
        "total": "100"
      },
      "weather_commentary": "<p>Cloudy with scattered showers. High 5 °C. Wind west: 25-45 km/h. Freezing level: 2100 metres.</p>"
    },
    "status": "success"
  }
}

About the whistlerblackcomb.com API

This API exposes 4 endpoints covering live mountain conditions at Whistler Blackcomb, including snow depth at three elevations, recent snowfall across four time windows, lift and run open/total counts, and terrain percentage. The get_mountain_conditions endpoint returns all available data in a single call, while focused endpoints like get_snow_conditions and get_lift_status return only the fields relevant to each use case.

What the API Returns

The get_mountain_conditions endpoint is the broadest call: it returns lift counts (lifts.open, lifts.total), trail counts (runs.open, runs.total), terrain percentage, snow quality description (snow_conditions), base snow depth at summit, mid-mountain, and base area (each in inches and centimeters), recent snowfall for overnight, 24-hour, 48-hour, and 7-day windows, season total snowfall, and a full weather commentary block in HTML format. The report_date_time field tells you exactly when the conditions report was published, formatted as MM/DD/YYYY HH:MM:SS.

Snow-Focused and Operations-Focused Endpoints

get_snow_conditions returns the snow-specific subset: new_snow, base_snow_depth, season_snowfall, snow_conditions, and report_date_time. It omits lift and trail counts. get_lift_status inverts this — it returns lifts, runs, and terrain_percentage without any snowfall data. get_weather_forecast pairs the HTML weather commentary with lift and run counts, making it useful for apps that want to display operational status alongside the forecast without pulling full snow depth data.

Data Shape and Units

All snowfall and depth fields carry dual units: inches and either c (centimeters, in new_snow sub-objects) or centimeters (in base_snow_depth and season_snowfall). Terrain percentage is returned as an object with open and total keys rather than a pre-computed ratio, so you can calculate coverage percentage on your end. The weather_commentary field contains HTML markup and may include paragraph tags, line breaks, or inline formatting from the source report.

Common use cases
  • Display a live snow report widget showing overnight and 7-day snowfall totals for a ski trip planning app
  • Alert users when the number of open lifts crosses a threshold using lifts.open from get_lift_status
  • Show summit vs. base snow depth comparison using base_snow_depth.summit and base_snow_depth.base_area
  • Render a weather forecast panel using the weather_commentary HTML field from get_weather_forecast
  • Track season snowfall accumulation over time by logging season_snowfall from daily get_snow_conditions calls
  • Build a terrain availability dashboard using terrain_percentage.open and runs.open together
  • Send morning condition summaries combining snow_conditions quality description with open run counts
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Whistler Blackcomb have an official developer API?+
Whistler Blackcomb does not publish a documented public developer API for mountain conditions data. Resort condition data is available on their website at whistlerblackcomb.com, but there is no official endpoint or API key program for third-party developers.
What does `get_mountain_conditions` return that the other endpoints do not?+
get_mountain_conditions is the only endpoint that combines snow depth, snowfall history, lift/run counts, terrain percentage, snow quality description, and the HTML weather commentary in a single response. The other endpoints each return a focused subset: get_snow_conditions covers snow data only, get_lift_status covers operational counts only, and get_weather_forecast covers weather commentary plus operational counts.
Does the API return status for individual named lifts or trails?+
Not currently. The API returns aggregate counts — lifts.open, lifts.total, runs.open, runs.total — rather than a list of individual lift or trail names with per-item status. You can fork this API on Parse and revise it to add an endpoint that returns per-lift or per-trail detail.
How current is the conditions data, and how often does it update?+
Each response includes a report_date_time field (format MM/DD/YYYY HH:MM:SS) that reflects when Whistler Blackcomb last published the conditions report. Updates depend on the resort's own reporting cadence, which typically changes once or a few times daily. The timestamp lets you detect whether a response reflects a new report or an unchanged one.
Does the API cover historical snow or conditions data across past seasons?+
No historical data is exposed. All four endpoints return the current conditions report only — there is no date range parameter or archive of past seasons. The API covers current season_snowfall totals and the most recent snowfall windows (overnight through 7 days). You can fork this API on Parse and revise it to persist responses over time and build a historical dataset from repeated calls.
Page content last updated . Spec covers 4 endpoints from whistlerblackcomb.com.
Related APIs in WeatherSee all →
sentinel-hub.com API
Access satellite imagery from around the world and retrieve spectral band data, timestamps, and geographic coverage information to analyze Earth observation data. Process and generate statistics from satellite images for your specific areas of interest using powerful image processing tools.
openweathermap.org API
Search for cities and retrieve live weather conditions and forecasts (current, minutely precipitation, hourly and daily) by coordinates or by city name.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
weatherspark.com API
Get historical weather data, current METAR reports, and monthly climate summaries for any location by searching WeatherSpark's comprehensive weather database. Access detailed weather insights including temperature trends, precipitation patterns, and atmospheric conditions to power weather-dependent applications and analysis.
breckenridge.com API
Check real-time snow conditions, weather forecasts, lift operations, and trail status at Breckenridge Ski Resort to plan your day on the mountain. View live mountain cameras and get up-to-the-minute updates on slopes, lifts, and weather before you head out.
surfline.com API
Check real-time surf conditions, forecasts for waves and wind, tide predictions, and live camera feeds from thousands of surf spots around the world. Browse spots by geographic region and access detailed weather data to plan your perfect surfing session.
ingres.iith.ac.in API
Access groundwater resource estimation data across India at multiple geographic levels—from national summaries down to block-level details—and search specific locations to track groundwater availability and assessment trends. View historical assessment years and generate reports to analyze groundwater resources by state, district, or region.
zoom.earth API
Search Zoom Earth for places and get live environmental data including weather forecasts by coordinates, satellite imagery timestamps, active tropical storm tracks, active fires, and current platform status.
Whistler Blackcomb API – Snow & Lift Status · Parse