# Mammothmountain — 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 Mammoth Mountain’s current trail status, snow report (base depth and recent/season snowfall), and weather conditions with a multi-day forecast for different elevations.

**Category:** Weather | **Website:** [mammothmountain.com/](https://mammothmountain.com/) | **Docs:** [parse.bot/marketplace/1291ad72-abe1-404b-80e4-d22565c3ccf8/mammothmountain-com-api](https://parse.bot/marketplace/1291ad72-abe1-404b-80e4-d22565c3ccf8/mammothmountain-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-mammothmountain-com-api-1291ad72/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_snow_report

Retrieves the latest snow report for Mammoth Mountain including base depths, recent snowfall totals at three elevation zones (main lodge, mid-mountain, summit), season total, base conditions description, and a detailed HTML narrative. Single snapshot with no parameters.

**Estimated cost:** Metered

_No parameters required._

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

### get_trail_status

Returns the current status of all ski trails at Mammoth Mountain. Each trail includes its area, difficulty level, grooming status, and whether it is open or closed. The response is a single snapshot — no pagination or filtering. Use the trails array to build client-side filters by area, difficulty, or open/closed status.

**Estimated cost:** Metered

_No parameters required._

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

### get_weather_report

Returns current weather conditions at three elevations (base, mid-mountain, summit) and a multi-day forecast for Mammoth Mountain. Current conditions include temperature, wind speed/direction/gusts, humidity, and sky description. Forecast entries include high/low temperatures, sky conditions, wind, and snow forecast. Single snapshot with no parameters.

**Estimated cost:** Metered

_No parameters required._

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