Closed CalebRose closed 5 years ago
Alphavantage API https://www.alphavantage.co/ https://www.alphavantage.co/documentation/
`// 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); }); `
Need to find an API we can use for finance / stock information