Is there any way to get historical stock prices from the yahoo api in the json format? I'd like to use REST because it's more lightweight.
feedback
|
|
You can use YQL to fetch data. look at here the code in C#. Or if you want current stock look at https://github.com/samkiller/stoxxbees You can have stock data in both xml or json. | |||
|
feedback
|
|
To follow up on user586050's answer with a specific example... You can use the YQL yahoo.finance.historical data table for this request, and have the results come back in JSON format. For example try this query (the link will take you to the YQL console where you can play with it): Sample results in JSON format:
| |||
|
feedback
|