# Breckenridge Ski 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.

> 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.

**Category:** Weather | **Website:** [breckenridge.com/](https://breckenridge.com/) | **Docs:** [parse.bot/marketplace/f44dc15b-f171-4751-b14a-03db796c08fb/breckenridge-com-api](https://parse.bot/marketplace/f44dc15b-f171-4751-b14a-03db796c08fb/breckenridge-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-breckenridge-com-api-f44dc15b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_weather

Get the current weather conditions at the resort including temperature, wind, and daily high/low. Measurement taken at base elevation (8120 ft).

**Estimated cost:** Metered

_No parameters required._

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

### get_lift_and_terrain_status

Retrieve the current status of all lifts and a summary of terrain availability at Breckenridge. Returns mountain area names year-round and individual lift details when the resort is open. During off-season, lifts array is empty and resort_open is false.

**Estimated cost:** Metered

_No parameters required._

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

### get_mountain_cams

List live mountain webcam feeds with their names and embed URLs. Returns static cam data for known Breckenridge webcams.

**Estimated cost:** Metered

_No parameters required._

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

### get_snow_report

Get the current snow report including recent snowfall measurements, base depth, season totals, and terrain open percentages. Data updates daily during ski season.

**Estimated cost:** Metered

_No parameters required._

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

### get_trail_status

Retrieve the status and difficulty of all ski trails (runs) at Breckenridge, organized by mountain area. Returns mountain area names year-round and individual trail details when the resort is open. During off-season, trails array is empty.

**Estimated cost:** Metered

_No parameters required._

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

### get_weather_forecast

Retrieve a multi-day weather forecast for Breckenridge including daily highs, lows, expected snowfall, and conditions. Returns up to 4 days of forecast data.

**Estimated cost:** Metered

_No parameters required._

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