# Keystone Resort — 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 real-time snow conditions, weather forecasts, lift statuses, and trail information for Keystone Resort to plan your perfect ski day. Access live mountain cams and detailed resort overviews to check conditions before you head out.

**Category:** Weather | **Website:** [keystoneresort.com/](https://keystoneresort.com/) | **Docs:** [parse.bot/marketplace/30dfb686-da1e-4229-b176-325a6e95590c/keystoneresort-com-api](https://parse.bot/marketplace/30dfb686-da1e-4229-b176-325a6e95590c/keystoneresort-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-keystoneresort-com-api-30dfb686/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_lift_status

Current operational status of all lifts at Keystone Resort. Each lift includes name, open/closed status, lift type, mountain area, and operating hours. During off-season (typically May-November), the lifts array is empty and summary counts are zero.

**Estimated cost:** Metered

_No parameters required._

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

### get_mountain_cams

Live mountain webcam embed URLs for Keystone Resort. Includes cameras at Dercum Mountain, North Peak, Bergman Bowl, River Run, and Lakeside Village. URLs are embeddable player links suitable for iframe integration.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-keystoneresort-com-api-30dfb686/get_mountain_cams \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_mountain_overview

High-level overview of Keystone Resort mountain operations: open/total lift and trail counts plus mid-mountain base depth. A single lightweight call for dashboard-style status checks without full lift or trail detail.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-keystoneresort-com-api-30dfb686/get_mountain_overview \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_snow_report

Current snow conditions at Keystone Resort: recent snowfall totals (24h, 48h, 7-day), base depth, season total, and overall conditions rating. Updated daily during ski season. Returns a single SnowReport with all measurements in both inches and centimeters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-keystoneresort-com-api-30dfb686/get_snow_report \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_trail_status

Current operational status of all ski trails at Keystone Resort. Each trail includes name, open/closed status, difficulty level, grooming status, and area. During off-season (typically May-November), the trails array is empty and summary counts are zero.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-keystoneresort-com-api-30dfb686/get_trail_status \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_weather_forecast

Current temperature and multi-day weather forecast for Keystone Resort. Includes high/low temperatures, wind speed and direction, weather description, and predicted snow accumulation for day and night periods. Forecast typically covers 5 days.

**Estimated cost:** Metered

_No parameters required._

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