the-warp-zone / FastTravelStocks

Fast Travel Stocks: Where finance and games come together!
https://fast-travel-stocks-warp.herokuapp.com/
0 stars 1 forks source link

API Access - Finance #1

Closed CalebRose closed 5 years ago

CalebRose commented 5 years ago

Need to find an API we can use for finance / stock information

CalebRose commented 5 years ago

Alphavantage API https://www.alphavantage.co/ https://www.alphavantage.co/documentation/

CalebRose commented 5 years ago

https://developer.dowjones.com/site/global/develop/introduction/index.gsp https://newsapi.org/

JakedStevens commented 5 years ago

`// Include the axios npm package (Don't forget to run "npm install axios" in this folder first!) var axios = require("axios");

// Then run a request with axios to the OMDB API with the movie specified axios({

url: "https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&apikey=6J7PBJ5E6ZV76KME&symbol=UBSFY"

}) .then(response => { console.log(response.data); }) .catch(err => { console.error(err); }); `

JakedStevens commented 5 years ago

Annotation 2019-06-17 233939 Annotation 2019-06-17 234007