🌐
Xweather
xweather.com › weather-api
Weather API for Lightning & Severe Weather ⚡| Xweather - Xweather
Access real-time lightning, hail, and global severe weather alerts via a fast, flexible Weather API. Get started with a free 30-day trial.
🌐
GitHub
github.com › crcarlo › yahoo-weather-api-proxy
GitHub - crcarlo/yahoo-weather-api-proxy: 🚀🌦 Yahoo weather API proxy ready to deploy on Δ Now
Since Jan 3, 2019 the use of Yahoo weather API through YQL has been dismissed and therefore you cannot have an app that directly calls an open API for getting weather data.
Author   crcarlo
Discussions

How do I make a call to the Yahoo hourly weather forecast API? - Stack Overflow
I have found yahoo weather forcast most helpful. I'm able to get an hourly weather request here from Yahoo. How can I make an API request for the above hourly weather report using an Yahoo API ca... More on stackoverflow.com
🌐 stackoverflow.com
c# - How to Upgrade to the new Yahoo weather API? - Stack Overflow
For some time now i have been using the Yahoo Weather Api to get current day temperature and forecasts for statistics in a .Net application in C#. Apparently Yahoo updated their api and the applic... More on stackoverflow.com
🌐 stackoverflow.com
android - How to get Weekly Weather forecast from yahoo API - Stack Overflow
I want to get Weekly weather forecast from yahoo api I'm using this API and try to give d=4 in parameter but it's not working, is there any alternative API or I am missing some thing ? http://we... More on stackoverflow.com
🌐 stackoverflow.com
Weather Forcasts from yahoo weather api - Stack Overflow
It seems this API is working, but actually the data is incorrect. for example you can compare above link data with "weather.yahooapis.com/forecastrss?w=2459115&d=1", the temperature from the json response is incorrect. More on stackoverflow.com
🌐 stackoverflow.com
🌐
Rainmeter Forums
forum.rainmeter.net › viewtopic.php
Yahoo! weather without WOEID. - Rainmeter Forums
March 17, 2013 - Works nice. Very clever indeed. Just need to be careful that you understand that the information returned, and thus the RegExp needed, is different than: [Variables] Location=2378074 Unit=f [MeasureWeather] ... URL=http://weather.yahooapis.com/forecastrss?w=#Location#&u=#Unit#
🌐
Drupal
drupal.org › project › yahoo_weather_forecast
Yahoo Weather Forecast | Drupal.org
February 13, 2024 - This module provides multiple blocks with current conditions and 2 days forecasts using the API from http://weather.yahoo.com Development sponsored by Alquimia Proyectos Digitales.
🌐
Stack Overflow
stackoverflow.com › questions › 16213242 › how-do-i-make-a-call-to-the-yahoo-hourly-weather-forecast-api
How do I make a call to the Yahoo hourly weather forecast API? - Stack Overflow
You can do using the REST API's of the programming language you want to use.. I will give Java example. (Similar thing applies to other languages too.. )' package tests; import org.apache.http.*; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.util.EntityUtils; /** * A simple Java REST GET example using the Apache HTTP library. * This executes a call against the Yahoo Weather API service, which is * actually an RSS service (http://developer.yahoo.com/weather/).
🌐
Stack Overflow
stackoverflow.com › questions › 38571362 › how-to-upgrade-to-the-new-yahoo-weather-api
c# - How to Upgrade to the new Yahoo weather API? - Stack Overflow
XmlDocument doc = new XmlDocument(); doc.Load("http://xml.yahooapis.com/forecastrss?w=" + WOEID + "&u=c"); XmlNamespaceManager ns = new XmlNamespaceManager(doc.NameTable); ns.AddNamespace("yweather", "http://xml.weather.yahoo.com/ns/rss/1.0"); XmlNode nod = doc.SelectSingleNode("/rss/channel/link", ns); link = nod.InnerText; ....more nodes selected.... and like this i get the xml nodes and values to store them in the database. What changes do I have to make so that the application will work with the new the api?
🌐
freeCodeCamp
freecodecamp.org › news › yahoo-weather-api-alternatives
Yahoo Weather API Alternatives
January 4, 2021 - For beginner developers, the Yahoo Weather API might be enough to build simple weather applications. Yahoo, however, has a lot of limitations as it only provides location-specific current data and ten-day historical data. If your application requir...
Find elsewhere
🌐
npm
npmjs.com › package › weather-yahoo
weather-yahoo - npm
To test it out, put the below code into Tonic and see the results, however, give it time (a few seconds) to talk with yahoo servers and return an answer. var yw = require('weather-yahoo'); var ans = {}; yw.getSimpleWeather('denver,co').then(function(res){ console.log(res); ans=res; }); // pulls just some of the info from yahoo weather yw.getFullWeather('denver,co').then(function(res){ console.log(res); ans=res; }); // returns full yahoo weather json
      » npm install weather-yahoo
    
Published   Jan 11, 2016
Version   1.0.2
Author   Kevin Walchko
🌐
Yahooinc
help.yahooinc.com › dsp-api › docs › weather-conditions-targeting
Weather Conditions
Add or update weather targets for the specified line. ... The line ID is specified in the path of the URL. All other parameters are specified in the body of the application/json payload. POST https://dspapi.admanagerplus.yahoo.com/traffic/lines/365277/targeting/
🌐
Web Designer Depot
webdesignerdepot.com › how-to-harness-yahoos-weather-api
How to harness Yahoo!'s weather API
December 21, 2023 - By using the IP address of the user and entering that into IPInfoDB, we were able to extrapolate the country, state or province, and the city or town of the person viewing the website. Feeding this into the Yahoo API gave us the current weather for that particular location.
🌐
GitHub
github.com › topics › yahoo-weather-api
yahoo-weather-api · GitHub Topics · GitHub
This repository holds a simple PHP Class that can get Weather Updates with the help of Yahoo Weather API
🌐
Yahoo!
mobile.yahoo.com › weather
Download Yahoo Weather App | Yahoo Mobile
Download Yahoo Weather app. Yahoo weather app helps you find the information you need while on-the-go.
🌐
Raymond Camden
raymondcamden.com › 2006 › 09 › 27 › Yahoo-Weather-Example
Yahoo Weather API ColdFusion Example
You can also specify if you want Fahrenheit or Celsius results. Switching to Celsius will make all the other units also switch to the metric system. But the cool thing about the Yahoo Weather API is that it returns you plain English names for the units.
🌐
Google Docs
docs.google.com › spreadsheets › d › 1-x5fJMnTZjSkI98crW58HA4UgWRJjWz2tvvlzM3vElc › edit
Yahoo! Weather API Icons Mapping - Google Sheets
Yahoo! Weather API Icons Mapping · Tab · External · Share · Sign in · File · Edit · View · Insert · Format · Data · Tools · Extensions · Help · Accessibility · Debug · Unsaved changes to Drive · Accessibility · View only · A browser error has occurred.
🌐
Stack Overflow
stackoverflow.com › questions › 16277694 › how-to-get-weekly-weather-forecast-from-yahoo-api
android - How to get Weekly Weather forecast from yahoo API - Stack Overflow
I'm using this API and try to give d=4 in parameter but it's not working, is there any alternative API or I am missing some thing ? Copyhttp://weather.yahooapis.com/forecastrss?w=" + woeidNumber
🌐
Aviation Weather
aviationweather.gov › data › api
Data API
The weather database currently allows access to up to the previous 15 days of data. Please keep requests limited in scope and frequency. Maximum results per query apply as well as rate limiting against frequent requests. For larger queries, please consider using the cache files which provide quick access to complete datasets. Full API specification documentation is provided in OpenAPI YAML and the following interactive interface.
🌐
SparkFun Electronics
news.sparkfun.com › 2379
IoTuesday: Using Yahoo's Weather API - News - SparkFun Electronics
There are limitations on its use, like noncommercial and 2,000 calls per day, but it still works well for an open API to get weather information. If you click on the link below, you can check out how to craft HTTP calls to the API: ... It relies on a query language called "Yahoo Query Language (YQL)" that works similarly to SQL.
🌐
YoruNoHikage's Blog
blog.yorunohikage.fr › 2018 › 07 › 30 › making-a-twitter-emoji-map-with-yahoo-weather-api
Making a Twitter emoji map with Yahoo Weather API - YoruNoHikage
July 30, 2018 - To get the weather information, I used Yahoo Weather API through a SQL-like language they made, YQL. All the information I needed on the data it gives me was the climate code under the condition key. Yahoo also uses a thing called woeid to represents places.