yahoo-api

Alternatives to the Yahoo Finance API? [closed]

拟墨画扇 提交于 2019-11-28 03:49:51
Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl. Google Finance was deprecated in 2011 but still appears to work somewhat. However, there is little to no documentation, and I need to pull dividend data which I was unable to find. Quandl appears to work well but the data is spread across multiple databases which makes getting appropriate access timely and costly. Does anyone know of any other viable alternatives? Alpha Vantage have real-time intraday as well as historical daily time series in JSON

Yahoo finance webservice API

删除回忆录丶 提交于 2019-11-28 03:34:56
I am trying to get realtime stock data from BSE and NSE using yahoo finance web-services. I was able to get some data using following URL http://finance.yahoo.com/webservice/v1/symbols/COALINDIA.NS/quote?format=json But it gives me very limited information. { "list": { "meta": { "type": "resource-list", "start": 0, "count": 1 }, "resources": [ { "resource": { "classname": "Quote", "fields": { "name": "COAL INDIA LTD", "price": "367.649994", "symbol": "COALINDIA.NS", "ts": "1418895539", "type": "equity", "utctime": "2014-12-18T09:38:59+0000", "volume": "2826975" } } } ] } } I need more

Weather Forcasts from yahoo weather api

梦想与她 提交于 2019-11-28 02:00:55
问题 How to get 3,5 or 7 day forecasts from Yahoo Weather API instead of just today and tomorrow? http://weather.yahooapis.com/forecastrss?w=location gives response which has weather forecast of just today and tomorrow. In what way we can have more forecasts in the response? Thanks, 回答1: As stated on the API explanation there are only two parameters: w for the WOEID (where on earth id) and u for the unit (Fahrenheit or Celsius). There are no parameters for the number of days to fetch. I recommend

Yahoo JSONP Ajax Request Wrapped in callback function

馋奶兔 提交于 2019-11-28 01:34:26
I understand that I can make a crossdomain ajax call with jquery, .ajax, and jsonp. I am calling the yahoo stock quote api. Everything is working and the result is returning (I can see using Fiddler.) The problem is I get a js error YAHOO is undefined. I think its having problems because the JSON is formated within a callback function so its not correct json syntax. What can I do to fix it? Thanks! Here is the code: $.ajax({ type: 'GET', dataType: 'jsonp', jsonp: 'callback', jsonpCallback: 'YAHOO.Finance.SymbolSuggest.ssCallback', data:{ query: request.term }, url: 'http://autoc.finance.yahoo

Making Yahoo Weather API request with OAuth 1

假装没事ソ 提交于 2019-11-27 13:49:12
问题 I ran into a problem with Yahoo Weather API because it wasn't giving me any data. After visiting YDN website I've found out that all requests should be updated to OAuth 1 starting from March 15th (but I got working it just today!). It's also said to include Yahoo App key and secret. What the request url should look like now, when I must use my app key and secret? Before, I got such request string: https://query.yahooapis.com/v1/public/yql?q=SOME_QUERY&format=json&env=store%3A%2F%2Fdatatables

Yahoo Finance Historical data downloader url is not working

拟墨画扇 提交于 2019-11-27 08:29:35
I have used the following url to fetch the historical data from yahoo finance. From last 16th May, 2017 the url is not working. http://real-chart.finance.yahoo.com/table.csv?s=AAL&a=04&b=01&c=2017&d=04&e=02&f=2017&g=d&ignore=.csv Seems like they have changed the url and the new url is: https://query1.finance.yahoo.com/v7/finance/download/AAL?period1=1494873000&period2=1494959400&interval=1d&events=history& crumb=l0aEtuOKocj In the above changed URL has a session cookie which is crumb. Is there any idea how to get this cookie programmatically(in JAVA)? Got it to work, now I just have to parse

Alternatives to the Yahoo Finance API? [closed]

谁说胖子不能爱 提交于 2019-11-27 00:11:35
问题 Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl. Google Finance was deprecated in 2011 but still appears to work somewhat. However, there is little to no documentation, and I need to pull dividend data which I was unable to find. Quandl appears to work well but the data is spread across multiple databases which makes getting appropriate access timely and costly. Does anyone know of any other viable

Yahoo finance webservice API

删除回忆录丶 提交于 2019-11-27 00:07:02
问题 I am trying to get realtime stock data from BSE and NSE using yahoo finance web-services. I was able to get some data using following URL http://finance.yahoo.com/webservice/v1/symbols/COALINDIA.NS/quote?format=json But it gives me very limited information. { "list": { "meta": { "type": "resource-list", "start": 0, "count": 1 }, "resources": [ { "resource": { "classname": "Quote", "fields": { "name": "COAL INDIA LTD", "price": "367.649994", "symbol": "COALINDIA.NS", "ts": "1418895539", "type"

Yahoo JSONP Ajax Request Wrapped in callback function

こ雲淡風輕ζ 提交于 2019-11-26 23:31:55
问题 I understand that I can make a crossdomain ajax call with jquery, .ajax, and jsonp. I am calling the yahoo stock quote api. Everything is working and the result is returning (I can see using Fiddler.) The problem is I get a js error YAHOO is undefined. I think its having problems because the JSON is formated within a callback function so its not correct json syntax. What can I do to fix it? Thanks! Here is the code: $.ajax({ type: 'GET', dataType: 'jsonp', jsonp: 'callback', jsonpCallback:

Has Yahoo finance web service disappeared? API changed? Down temporarily?

人走茶凉 提交于 2019-11-26 19:43:51
For quite some time I've been using the following REST API to query Yahoo finance for current prices. It is documented in several Stack Overflow posts, e.g. Yahoo finance webservice and elsewhere in yahoo-finance . http://finance.yahoo.com/webservice/v1/symbols/$SYMBOLS/quote?format=json where $SYMBOLS is a comma-delimited list of stock or index symbols. Yesterday the query stopped working, returning only a "Moved Temporarily. Redirecting to ..." message. Is this web service now closed? Has it been replaced by YQL or another API? Queries for a table of historic prices to "ichart" still work. E