# Whistler Blackcomb — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Get current Whistler Blackcomb mountain conditions, including snow depth and recent snowfall, lift and run openings, terrain availability, and the latest weather report.

**Category:** Weather | **Website:** [whistlerblackcomb.com/](https://whistlerblackcomb.com/) | **Docs:** [parse.bot/marketplace/7c69dbf4-4e39-48e6-8488-0c90a62c637d/whistlerblackcomb-com-api](https://parse.bot/marketplace/7c69dbf4-4e39-48e6-8488-0c90a62c637d/whistlerblackcomb-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-whistlerblackcomb-com-api-7c69dbf4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_lift_status

Get current lift and trail operational status for Whistler Blackcomb. Returns counts of open versus total lifts, runs, and terrain percentage open.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whistlerblackcomb-com-api-7c69dbf4/get_lift_status \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_mountain_conditions

Get comprehensive mountain conditions including snow, weather, lift, and trail status for Whistler Blackcomb. Returns all available data in a single call — snow depths, recent snowfall, lift/run counts, terrain percentage, snow quality, and weather commentary. This is the most complete endpoint; the others return subsets of this data.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whistlerblackcomb-com-api-7c69dbf4/get_mountain_conditions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_snow_conditions

Get detailed snow conditions including depth and recent snowfall for Whistler Blackcomb. Returns a subset of the mountain conditions focused on snow data: current snow quality, recent snowfall by time period, base depths at three elevations, and season total.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whistlerblackcomb-com-api-7c69dbf4/get_snow_conditions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_weather_forecast

Get current weather conditions and forecast including lift/trail status for Whistler Blackcomb. Returns weather commentary (HTML) along with operational counts for lifts, runs, and terrain percentage.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whistlerblackcomb-com-api-7c69dbf4/get_weather_forecast \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
