VIC . BOM station 090186

Warrnambool weather API

Live Bureau of Meteorology observations for Warrnambool, VIC, as a flat JSON API. One bearer token, one call. Returns temperature, humidity, wind, and rainfall on a 30-minute refresh.

Latitude
-38.3818
Longitude
142.4847
State
VIC
Station
090186

Get current weather

cURL
curl https://api.ausdata.io/v1/weather/warrnambool \
  -H "Authorization: Bearer YOUR_KEY"
Python
import requests
r = requests.get(
    "https://api.ausdata.io/v1/weather/warrnambool",
    headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())

What you get back

  • temperature_c
  • feels_like_c
  • humidity_pct
  • wind_kmh
  • wind_direction
  • rainfall_mm_24h
  • pressure_hpa
  • observed_at

Notes

  • BOM updates observations every 30 minutes. We cache responses to match.
  • Station 090186 is the primary Warrnambool observation site. Some fields may be null after equipment outages.
  • For forecasts, use /v1/forecast/warrnambool. For history, /v1/weather/history with station=090186.

Other VIC locations

Pull live weather into your app

500 free calls per month. No credit card.

Get a free API key