Created
October 23, 2021 09:42
-
-
Save leovarmak/d4b0f2a8ccd9788e3a87a183c0e19da2 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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