Weather Scraper — Forecasts & Historical Climate Data avatar

Weather Scraper — Forecasts & Historical Climate Data

Pricing

from $2.00 / 1,000 locations

Go to Apify Store
Weather Scraper — Forecasts & Historical Climate Data

Weather Scraper — Forecasts & Historical Climate Data

Get weather forecasts and historical climate data for any location worldwide: temperature, precipitation, wind, UV index, sunrise/sunset and hourly detail. Search by city or coordinates. No API key.

Pricing

from $2.00 / 1,000 locations

Rating

0.0

(0)

Developer

Hichem Ben Moussa

Hichem Ben Moussa

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Get weather forecasts and historical climate data for any location on earth — temperature, precipitation, wind, UV index, sunrise/sunset, plus optional hour-by-hour detail. Search by city name or coordinates. No API key, no sign-up.

What you can do with it

  • 🚚 Logistics & delivery planning — weather risk along routes and depots
  • 🌾 Agriculture — rainfall and temperature tracking per field
  • 🎪 Events & hospitality — forecast for venue locations
  • Energy & demand forecasting — temperature drives load
  • 📊 Research — decades of historical archive data

Input

FieldTypeDescription
locationsarrayCity names, e.g. Berlin, New York — geocoded automatically.
coordinatesarrayExact lat,lon pairs, e.g. 52.52,13.41.
modeselectforecast (up to 16 days) or historical archive.
forecastDaysintegerDays ahead (1–16).
startDate / endDatestringYYYY-MM-DD — historical mode.
temperatureUnit / windSpeedUnitselectCelsius/Fahrenheit, km/h, mph, m/s, knots.
includeHourlybooleanAdd hourly temperature, humidity, precipitation, wind.

Example

{ "locations": ["Berlin", "New York", "Tokyo"], "mode": "forecast", "forecastDays": 7 }

Output

{
"location": "Berlin",
"country": "Germany",
"latitude": 52.52,
"longitude": 13.41,
"timezone": "Europe/Berlin",
"currentTemperature": 19.5,
"currentWeatherDescription": "Slight rain",
"daily": [
{
"date": "2026-08-21",
"temperature_2m_max": 25.1,
"temperature_2m_min": 14.4,
"precipitation_sum": 0.7,
"windspeed_10m_max": 18.4,
"uv_index_max": 5.6,
"sunrise": "2026-08-21T06:04",
"sunset": "2026-08-21T20:23",
"weatherDescription": "Slight rain"
}
]
}

Export to JSON, CSV, Excel, or pull live via the Apify API.

Notes

  • Powered by the Open-Meteo public API — free, no key, and very reliable.
  • Weather codes are translated into plain-English descriptions (weatherDescription).
  • Historical mode needs both startDate and endDate.