/api/v1/report when you need:
Complete resort information response.
The all-in-one endpoint response containing resort information, current status, all runs, lifts, snow reports, operating hours, and weather data. This is the most comprehensive response and is ideal for building complete resort dashboards.
Complete resort information response.
The all-in-one endpoint response containing resort information, current status, all runs, lifts, snow reports, operating hours, and weather data. This is the most comprehensive response and is ideal for building complete resort dashboards.
Basic resort information and preferences.
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"name": "Powder Mountain Resort",
"slug": "powder-mountain",
"timezone": "America/Denver",
"unit_preference": "imperial"
}Current operational status with today's hours and statistics.
{
"status": "open",
"opens_at": "09:00",
"closes_at": "16:00",
"season": "winter",
"notes": "Fresh powder overnight! All lifts spinning.",
"updated_at": "2026-01-09T22:14:38.860168+00:00",
"open_runs": 42,
"groomed_runs": 38,
"total_runs": 50,
"runs_updated_at": "2026-01-09T22:14:38.860191+00:00",
"open_lifts": 8,
"total_lifts": 10,
"lifts_updated_at": "2026-01-09T22:14:38.860191+00:00",
"summer_trails_updated_at": null
}All ski runs at the resort with current status.
All summer trails at the resort with current status.
All lifts at the resort with current status.
Snow condition reports for each area.
Operating hours schedule for the season. Only included if the operating hours feature is enabled.
{
"open_days": [
{
"date": "2024-12-25",
"day_of_week": "Wednesday",
"is_open": true,
"opens_at": "09:00",
"closes_at": "16:00"
}
],
"schedules": [
{
"days_string": "Saturday & Sunday",
"days_recurrence": [0, 6],
"time_string": "9:00 a.m. to 4:00 p.m.",
"opens_at": "09:00",
"closes_at": "16:00",
"in_effect": true,
"effective_string": "November 1, 2024 to April 15, 2025",
"effective_from": "2024-11-01",
"effective_to": "2025-04-15"
}
]
}Current weather conditions and forecast. Only included if the weather feature is enabled and GPS coordinates are configured.
{
"current": {
"imperial": {
"temperature": 28,
"feels_like": 22,
"snowfall": 2,
"precipitation": 0,
"wind_speed": 12,
"wind_gust": 18
},
"metric": {
"temperature": -2,
"feels_like": -6,
"snowfall": 5,
"precipitation": 0,
"wind_speed": 19,
"wind_gust": 29
},
"condition": "Light Snow",
"condition_code": "Snow",
"wind_direction": 270,
"wind_direction_cardinal": "W",
"timestamp": "2026-01-09T22:14:38.862227+00:00"
},
"hourly_forecast": [
{
"timestamp": "2026-01-09T22:14:38.862227+00:00",
"imperial": {
"temperature": 28,
"feels_like": 22,
"snowfall": 1,
"precipitation": 0,
"wind_speed": 12,
"wind_gust": 18
},
"metric": {
"temperature": -2,
"feels_like": -6,
"snowfall": 3,
"precipitation": 0,
"wind_speed": 19,
"wind_gust": 29
},
"condition": "Light Snow",
"condition_code": "Snow",
"precipitation_probability": 65
}
],
"daily_forecast": [
{
"date": "2024-12-26",
"imperial": {
"temperature_high": 32,
"temperature_low": 18,
"snowfall_total": 6,
"precipitation_total": 0,
"wind_speed_max": 25,
"wind_gust_max": 35
},
"metric": {
"temperature_high": 0,
"temperature_low": -8,
"snowfall_total": 15,
"precipitation_total": 0,
"wind_speed_max": 40,
"wind_gust_max": 56
},
"condition": "Light Snow",
"condition_code": "Snow",
"precipitation_probability": 65,
"sunrise": "2026-01-09T22:14:38.862228+00:00",
"sunset": "2026-01-09T22:14:38.862228+00:00"
}
],
"attribution": "https://developer.apple.com/weatherkit/data-source-attribution/",
"updated_at": "2026-01-09T22:14:38.862228+00:00"
}