I'm looking for the best (free/cheap) international weather PHP API out there. Any suggestions?

link|improve this question

59% accept rate
feedback

4 Answers

up vote 3 down vote accepted

look in this answer :

http://stackoverflow.com/questions/507441/best-weather-apis

the chosen answer give this :

•The National Weather Service has a SOAP Web service.

•Yahoo has a weather RSS feed.

•Animaonline is a weather API powered by Google. There are code samples and tutorial links on the project page, but I found another tutorial here.

link|improve this answer
feedback

What do you want to do with the data?

If you just want to display it, look for a weather site with an RSS feed. Then you can easily request it, cache it on your server and parse it.

For requesting, use cURL or file_get_contents() (if your php.ini allows it).

For caching, just check filemtime() and make a comparison.

To parse it, use SimpleXML.

link|improve this answer
feedback

Yahoo Weather or Google Weather are both fast and free. I've used Google the most, you can use both city name or latitude/longitude to collect data.

Worth noting is that Google doesn't really provide an API and is undocumented, so no one knows the future of it.

link|improve this answer
Thanks! But the Yahoo Weather API. Is it possible to make a search engine for it? I see you need to use a unique WOEID in the URL like this; weather.yahooapis.com/forecastrss?w=locatio to get the right location. This works great if all users on my site only have one Weather feed. But is it possible to make a search engine (with PHP) so that the users can costumize the location? – cvack Mar 24 '10 at 7:22
feedback

Both weathernation and feedsyndicate.com both offer a commercial api

Weathernation.com isn't very inexpensive.. feedsyndicate can be but you need to ask for a deal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.