Created
March 4, 2021 02:20
-
-
Save vrymel/1503c21808d3a6f75136b3ed9fbab912 to your computer and use it in GitHub Desktop.
Fetch PSE Lookup API from a Node backend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require('node-fetch'); | |
fetch('https://pselookup.vrymel.com/api/stocks') | |
.then(response => response.json()) | |
.then(data => console.log(data)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment