Avalanche Org Forecast Scraper avatar

Avalanche Org Forecast Scraper

Pricing

Pay per event

Go to Apify Store
Avalanche Org Forecast Scraper

Avalanche Org Forecast Scraper

Scrapes structured avalanche forecasts from the official US avalanche center aggregator API (avalanche.org). Returns danger ratings, avalanche problem breakdowns, hazard discussions, and expiry times for all ~80 forecast zones across ~30 US avalanche centers — no authentication required.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Categories

Share

Scrapes structured avalanche forecasts from the official US avalanche center aggregator API (avalanche.org). Returns danger ratings, avalanche problem breakdowns, hazard discussions, and expiry times for all ~80 forecast zones across ~30 US avalanche centers — no authentication required.

What it does

Walks the avalanche.org public v2 API in two phases:

  1. Fetches all forecast zones from the /products/map-layer GeoJSON endpoint (~82 zones across ~30 US avalanche centers)
  2. Fetches the current forecast product for each zone — danger ratings by elevation band (lower/middle/upper), avalanche problem types, author, publish/expire times, and advisory text

All data is sourced from the official avalanche.org aggregator, which consolidates forecasts from the American Avalanche Association member centers (CAIC, NWAC, UAC, BTAC, and others).

Input

FieldTypeDescription
maxItemsintegerMaximum number of forecast records to return (default: 10)
centerIdsstringComma-separated center IDs to filter, e.g. CAIC,NWAC,UAC (leave empty for all centers)
activeOnlybooleanWhen true, skip zones marked as off-season (default: false)

Example input

{
"maxItems": 50,
"centerIds": "CAIC,NWAC",
"activeOnly": true
}

Output

Each output record represents one forecast zone:

FieldTypeDescription
center_idstringAvalanche center code (e.g. CAIC, NWAC, UAC)
center_namestringFull center name (e.g. Colorado Avalanche Information Center)
center_linkstringCenter website URL
statestringUS state abbreviation
zone_idstringNumeric zone ID
zone_namestringZone name (e.g. Front Range, East Slopes North)
product_typestringforecast, summary, warning, watch, or special
published_timestringISO 8601 timestamp when the forecast was published
expires_timestringISO 8601 timestamp when the forecast expires
authorstringForecaster name
danger_ratingstringJSON object with current and tomorrow danger by elevation band (lower/middle/upper), integers 1–5 with labels (Low/Moderate/Considerable/High/Extreme)
bottom_linestringPlain-text summary of the forecast
hazard_discussionstringPlain-text detailed hazard analysis
problemsstringJSON array of avalanche problem objects (type, likelihood, size, aspects, discussion)
off_seasonbooleanWhether this zone is in its off-season period

Example output

{
"center_id": "CAIC",
"center_name": "Colorado Avalanche Information Center",
"center_link": "https://avalanche.state.co.us/",
"state": "CO",
"zone_id": "2755",
"zone_name": "Front Range",
"product_type": "forecast",
"published_time": "2026-05-22T22:30:00+00:00",
"expires_time": "2026-05-23T22:30:00+00:00",
"author": "Jeff Davis",
"danger_rating": "{\"current\":{\"lower\":1,\"middle\":1,\"upper\":1,\"lower_label\":\"Low\",\"middle_label\":\"Low\",\"upper_label\":\"Low\"},\"tomorrow\":null}",
"bottom_line": "You may be able to trigger small avalanches in wet surface snow on Saturday and Sunday as temperatures warm.",
"hazard_discussion": null,
"problems": "[]",
"off_season": false
}

Use cases

  • Backcountry safety applications — integrate current danger ratings into trip-planning tools
  • Weather and outdoor media — embed daily avalanche forecasts with zone-level granularity
  • Research and analysis — build season-over-season danger rating datasets
  • Alert systems — monitor for High/Extreme danger ratings and trigger notifications
  • Insurance and guiding operations — daily automated safety briefing feeds

Notes

  • Forecasts are updated daily during the winter season (~November through April, varies by center)
  • Off-season zones return spring statements rather than numeric danger ratings
  • The danger_rating and problems fields are JSON strings — parse them in your downstream pipeline
  • No API key required; the avalanche.org v2 API is fully public

Center ID reference

Common center IDs: CAIC (Colorado), NWAC (Northwest/WA/OR), UAC (Utah), BTAC (Bridger-Teton/WY), GNFAC (Gallatin/MT), FAC (Flathead/MT), ESAC (Eastern Sierra/CA), MWAC (Mount Washington/NH), SNFAC (Sawtooth/ID), PAC (Payette/ID), SAC (Sierra/CA), IPAC (Idaho Panhandle), TAC (Taos/NM), CNFAIC (Chugach/AK), WCMAC (West Central Montana)