I am trying to make a new application and I would like to get stock updates, currency exchange updates etc. Can you please suggest some free API for getting these updates? I have already tried :
1) Google Finance API. Reason for not using: Deprecated and to be closed soon which will make my application obsolete.
2) Yahoo Finance API. Reason for not using: There is no proper documentation for it. The reason for that being that yahoo actually don’t have a finance API. It appears some have reverse engineered an API that they use to pull Finance data, but they are breaking Yahoo’s Terms of Service. I don’t want to do that. (Read from http://developer.yahoo.com/forum/General-Discussion-at-YDN/Using-Yahoo-Finance-API-Not-RSS-/1250246255000-0b82f8f0-7f48-3af2-8fe2-e73a138cbfaa)
It would be great if a link to some resource or code is provided. Thanks for the help in advance.
Using yql now.
query:
"http://query.yahooapis.com/v1/public/yql?q=select%20rate%2Cname%20from%20csv%20where%20url%3D'http%3A%2F%2Fdownload.finance.yahoo.com%2Fd%2Fquotes%3Fs%3D"+ from
+ to
+ "%253DX%26f%3Dl1n'%20and%20columns%3D'rate%2Cname'&format=json&callback=parseExchangeRate"
code snippet: