Open weather map has a subscription where you can get 1000 calls a day for free. You have to put in a payment method so they charge you when you go over. https://openweathermap.org/api/one-call-3 Answer from snap802 on reddit.com
🌐
Reddit
reddit.com › r/learnpython › best weather api
r/learnpython on Reddit: Best Weather API
August 24, 2023 - They’re also one of the top ranked providers on Forecast Advisor. In my area atleast they are actually the most accurate, but that can vary from what I’ve found (I have found them to be top 3 for most areas).
🌐
Reddit
reddit.com › r/webdev › best free weather api? (also lol at openweathermap's pricing)
r/webdev on Reddit: Best free weather API? (also LOL at openWeatherMap's pricing)
November 19, 2020 -

I found a decent free tier API that gives some hourly forecast data (openWeatherMap.com). It's pretty decent, but I started looking at their pricing for paid plans, and like, holy FUCK the "developer" plan is $180 per month! for a weather api? with limited endpoints? Why would anyone pay that much?

What's your favorite free weather API?

EDIT: I ended up going with weatherapi.com. Their endpoints are much more detailed than other options and offer 3 days of hour-by-hour forecast data on free tier, which is best in class.

🌐
Reddit
reddit.com › r/learnprogramming › is there a free and accurate weather api
r/learnprogramming on Reddit: Is there a free and accurate weather API
December 29, 2024 -

I tried OpenWeatherMap but I need to put a credit card in and I don't have that right now. I also tried weatherstack but the info it gave me was wrong. Meteo wants a free trial.

Are there alternative weather API that are free and accurate without having put credit details in?

🌐
Reddit
reddit.com › r/webdev › best weather forecast api
r/webdev on Reddit: Best weather forecast API
July 28, 2024 -

Hi y'all, I'm planning to develop a nautic web application which would require a reliable weather forecast API, but its for a friend and I'm not looking for a super-scalable/pricy option.

I would like to get some recomendations on a reliable and cheap (or free, due that I'd do low requests pet day/month)

I've seen windycom API's but the free version is not for production (not real data) and the paid one is ~1k€/yr

Thanks 4ur time.

🌐
Reddit
reddit.com › r/webdev › weather api recommendations for 5-minute precipitation forecasts
r/webdev on Reddit: Weather API recommendations for 5-minute precipitation forecasts
February 17, 2026 -

I am developing a weather app for iOS and want to add notification alerts like:
“Rain expected at 4:40PM. Stopping around 5:15PM.”

For that, I’m looking for an affordable weather API that provides reasonably accurate precipitation forecasts for the next ~3 hours at 5-minute intervals, mainly for European countries (but ideally global).

Here’s what I’ve found so far:

  • Apple WeatherKit – 5-minute data, but only available for the US, Canada, UK, Australia, and Japan.

  • Open-Meteo – Available globally, but only in 15-minute intervals.

  • Tomorrow.io– Offers 5-minute intervals, but accuracy hasn’t been great in my location (Switzerland). Also pricing may be very high since it’s not listed online.

  • OpenWeatherMap – 5-minute intervals, but only for the next hour - and has been criticized on Reddit for low accuracy.

Does anyone have recommendations for other APIs that support 5-minute precipitation forecasts?
Also curious about your experiences—how reliable are these short-term, high-resolution forecasts in your experience?

🌐
Reddit
reddit.com › r/weather › weather api service
r/weather on Reddit: Weather API service
December 21, 2023 -

Hello all!

I have a client (think roofing) that wants to be able to schedule roofing crews around upcoming weather forecast. Can someone recommend a service (reasonably priced is ok) that can give us the forecast as a percent chance of rain by zip code that we can refresh every hour or so to put into the scheduling algorithm? We are thinking setting up a program that runs every hour and updates a weather table with the regions zip codes and a column for each upcoming day that we put the percentage chance of rain.

Thanks!

Top answer
1 of 5
5
If you’re in the US, your tax dollars already pay for a weather API! The National Weather Service has an API that you can ping for forecasts of a specific latitude/longitude or forecast office/state/zip code (if you convert them to a latitude/longitude). One of the outputs will be a forecast of percent chance of precipitation as well as the forecasted amount (QPF = quantitative precipitation forecast). Here’s an FAQ webpage: NWS API . Otherwise, something like WeatherBELL may have what you’re looking for?
2 of 5
2
As pointed out, you can use the NWS API for free in the US. I will say it’s not without its issues. I have an app that relies heavily on the NWS API and it has been the biggest point of failure at any given time. The reliability lately has gotten a lot better, but I still will get 404 and 503 errors, or sometimes even just straight up outdated forecasts (like days old). I have coded against the Aeris Weather API and it’s featured, but expensive. You could check out the Azure Maps API that uses AccuWeather as its data source for weather and they give relatively generous free calls. Beyond the free tier, the pricing is very reasonable. You can also use the Azure geolocation API to convert your job addresses to lat/long and store that in your database, most weather APIs prefer to work in coordinates. At that point you can easily leverage geospatial functions of the database to group job areas regionally how you see fit, not just ZIP (though nothing precludes you from doing that).
🌐
Reddit
reddit.com › r/flutterdev › weather api suggestions?
r/FlutterDev on Reddit: Weather API suggestions?
June 6, 2024 -

I’m looking for some feedback on people’s experience with weather APIs and flutter. I have a short list of asks: google maps layer support, 5 day forecast, current weather feedback. We just integrated to tomorrow io but needed a rate increase and their entry price was $352 a month and had to pay 12 months in advance!!! Absolutely bonkers!

Find elsewhere
🌐
Reddit
reddit.com › r/webdev › what is the best free weather api?
r/webdev on Reddit: What is the best free Weather API?
August 16, 2015 - Can Aeris Weather API offer minutely forecasts? ... I think you can still find the old free WeatherUnderground around (now it requires registration iirc) and it was pretty accurate.
🌐
Reddit
reddit.com › r/selfhosted › for anyone procrastinating on finding another weather data source before the dark sky shutdown next week, i put together a drop-in compatible/ free/ documented api called pirate weather.
r/selfhosted on Reddit: For anyone procrastinating on finding another weather data source before the Dark Sky shutdown next week, I put together a drop-in compatible/ free/ documented API called Pirate Weather.
March 26, 2023 -

Ever since Dark Sky announced they were shutting down, I wanted to find a drop-in compatible replacement for the half dozen things around my house that relied on weather data. Moreover, weather forecast are mostly run by governments, I wanted a data source that made this data much easier to use. The combination of these two goals was Pirate Weather. It’s designed to be 1:1 compatible with Dark Sky, and since every processing step is documented, you can work out exactly where the data is coming from and what it means.

All the processing scripts are in the GitHub repository. Since releasing it last year, the API has come a long way, squashing a ton of bugs and improving stability. The community feedback has been invaluable, and I’ll be continuing to make improvements to it over time, with better text summaries coming next!

As part of this, I also put together a repository with a python notebook to grab a weather data variable directly from NOAA and process it, which might also be useful to some applications here!

🌐
Reddit
reddit.com › r/webdev › any reliable, free weather api's?
r/webdev on Reddit: Any Reliable, free weather API's?
October 15, 2018 -

I'm in need of an API that will provide current weather conditions (static location- UK). I had my heart set on Weather Underground but that's not going to be possible for much longer.

I'm still in the process of looking for myself but thought I'd ask, for my recommendations too.

UPDATE:

I've looked at the sites mentioned below and stuck with: Darksky.net, API, their API provides 1,000 free calls per day. (Suggested by Steeze206)

Then for icons I used - https://erikflowers.github.io/weather-icons/ (suggested by Gizm083)

🌐
Reddit
reddit.com › r/learnprogramming › reliable and accurate weather api for historic rain?
r/learnprogramming on Reddit: Reliable and accurate weather API for historic rain?
May 7, 2022 -

Hey everyone, I'm currently building a Twitter bot that will have the main functionality of tweeting accumulated rainfall (if any) for the past day in specific locations.

I'm currently using the free tier openweathermap API with the Historical weather data endpoint. However, I haven't been able to find it reliable. I've tried to get current and past data by using coordinates that I absolutely know for sure are either currently raining, or have rained, but the returned data has 0 mentions of rain.

Does anybody know of any free weather API that'll help me get what I need?

Thanks!

🌐
Reddit
reddit.com › r/askprogramming › detailed weather api service ?
r/AskProgramming on Reddit: Detailed weather API service ?
June 10, 2021 -

Hello,

I was planning on using DarkSky for my weather app (will be coded in Swift), but it seems like Apple is going to shutdown this API.

Any other recommendations for detailed weather API ?

Thanks in advance!

🌐
Reddit
reddit.com › r/programming › looking for a free weather api with forecasts
r/programming on Reddit: Looking for a free weather API with forecasts
May 25, 2020 - The Norwegian Governments Weather Forecasting service is considered a pretty accurate source for global weather forecasts. See if this might tickle your pickle: https://api.met.no/weatherapi/locationforecast/1.9/documentation