Weather Markets

Weather prediction market data API

Polymarket runs ~30 weather-themed markets at any given time: daily high-temperature contracts for major cities, hurricane and named-storm markets, and longer-horizon climate markets like Arctic ice extent and annual record temperatures. Resolved Markets captures every event from each token's orderbook into ClickHouse with full bid/ask depth and unlimited history — and weather is included on the Free tier.

Last updated:

  • ~30Active weather markets
  • 0.2–0.5 HzCapture rate
  • IncludedFree tier
  • Unlimited (paid)Historical retention

Why weather prediction-market data matters

Polymarket weather markets are a near-pure source of probabilistic forecasts priced by people with USDC at stake. They sit upstream of three useful signals:

  • Forecast benchmark. Compare GFS / ECMWF / proprietary model outputs against a market that prices the same outcome — the spread is a quick read on model confidence.
  • Energy-trading nowcast. Heat-wave and cold-snap markets move ahead of NWS official advisories during volatile periods. Power and gas desks watch them as a sentiment overlay.
  • Climate research. Long-horizon markets (annual records, Arctic ice) provide forward-looking pricing for climate questions that traditional surveys cannot price discretely.

Pull a weather market

# List active weather markets
curl -s "https://api.resolvedmarkets.com/v1/markets/live?category=weather" \
  -H "X-API-Key: rm_your_key" | jq '.markets[] | {slug, question}'

# Live orderbook for one market
curl -s "https://api.resolvedmarkets.com/v1/markets/<condition_id>/orderbook" \
  -H "X-API-Key: rm_your_key" | jq '{up_bid: .up.best_bid, up_ask: .up.best_ask}'

# Historical snapshots
curl -s "https://api.resolvedmarkets.com/v1/markets/<condition_id>/snapshots?limit=500" \
  -H "X-API-Key: rm_your_key" | jq '.snapshots[0]'

Frequently asked questions