Skip to content

Instantly share code, notes, and snippets.

@leovarmak
Created October 23, 2021 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leovarmak/d4b0f2a8ccd9788e3a87a183c0e19da2 to your computer and use it in GitHub Desktop.
Save leovarmak/d4b0f2a8ccd9788e3a87a183c0e19da2 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/axios@0.21.1/dist/axios.min.js"></script>
<script>
function loginFunction() {
axios.get("https://public.coindcx.com/market_data/trade_history?pair=I-DGTX_INR&limit=1").then(function(response) {
console.log("Response : " + JSON.stringify(response.data));
})
}
</script>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment