Skip to content

Instantly share code, notes, and snippets.

@vrymel
Created March 4, 2021 02:20
Show Gist options
  • Save vrymel/1503c21808d3a6f75136b3ed9fbab912 to your computer and use it in GitHub Desktop.
Save vrymel/1503c21808d3a6f75136b3ed9fbab912 to your computer and use it in GitHub Desktop.
Fetch PSE Lookup API from a Node backend
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