Access historical and current weather data from the Bureau of Meteorology. Fast, reliable, and easy to integrate.
Start Free - 100 Requests/Month View DocumentationReal BOM data, fast API responses, comprehensive coverage
Direct access to Bureau of Meteorology weather observations. Historical data from 1946 to present day.
93.3% coverage across all Australian states and territories. Find weather data for any location.
Intelligent caching ensures sub-100ms response times for cached data. Real-time updates when needed.
Enterprise-grade security with API key authentication. 99.9% uptime SLA for Pro subscribers.
RESTful API with comprehensive documentation. SDKs for Python, JavaScript, and more coming soon.
Start with 100 free requests per month. No credit card required. Upgrade when you're ready.
Simple REST API - three steps to weather data
// 1. Sign up and get your API key (30 seconds)
// 2. Make your first request
const response = await fetch(
'https://api.fetchaweather.com/api/weather/location?location=Melbourne&state=Victoria',
{
headers: {
'X-API-Key': 'your_api_key_here'
}
}
);
const data = await response.json();
console.log(data);
// 3. That's it! You now have weather data
# 1. Sign up and get your API key (30 seconds)
# 2. Make your first request
import requests
response = requests.get(
'https://api.fetchaweather.com/api/weather/location',
params={
'location': 'Melbourne',
'state': 'Victoria'
},
headers={
'X-API-Key': 'your_api_key_here'
}
)
data = response.json()
print(data)
# 3. That's it! You now have weather data
# 1. Sign up and get your API key (30 seconds)
# 2. Make your first request
curl -H "X-API-Key: your_api_key_here" \
"https://api.fetchaweather.com/api/weather/location?location=Melbourne&state=Victoria"
# 3. That's it! You now have weather data
Start free, scale as you grow
Whatever you're building, we've got the data you need
Plan crop cycles, irrigation schedules, and harvest timing with historical weather patterns.
Choose optimal dates for outdoor events based on historical weather data and forecasts.
Access decades of weather data for climate studies, academic research, and analysis.
Integrate weather data into your mobile apps, websites, and software products.
Sign up now and get 100 free requests per month. No credit card required.
Create Free Account