Public API

Read-only JSON endpoints designed for resort dashboards, lodge screens and partner integrations. No key is required; responses are cached for ten minutes and CORS is open.

Endpoints

Available routes

  • GET/api/public/v1/conditions?resort=falls-creek&band=village

    Current conditions, snow summary, confidence rating and lift operating likelihood.

  • GET/api/public/v1/forecast?resort=falls-creek&band=village

    Hourly (7-day) and daily (14-day) forecast arrays plus per-day confidence.

  • GET/api/public/v1/models?resort=falls-creek

    Per-model daily snowfall and temperature series for ensemble comparison.

  • GET/api/public/v1/resorts

    Supported resorts, coordinates, elevations and activation status.

Example

Fetching current conditions

const res = await fetch(
  "/api/public/v1/conditions?resort=falls-creek&band=summit"
);
const data = await res.json();

console.log(data.current.tempC, data.snow.fresh24Cm);
console.log(data.confidence.rating, data.lifts[0].verdict);

Attribution

Data sources and fair use

  • Forecast data derived from Open-Meteo (ECMWF IFS, NOAA GFS, DWD ICON, CMC GEM, BOM ACCESS-G).
  • Surface observations from the Australian Bureau of Meteorology automatic weather stations.
  • Derived intelligence (snow quality, snowmaking, lift likelihood) is computed by Alpine Intelligence.
  • Please attribute Alpine Intelligence and the underlying providers when republishing.