There is an API on a third-party service, you need to output json data in a readable format with delimiters https://www.eobot.com/api.aspx?total=1&json=true
Thank you in advance!
I tried different methods.
while stopped at
<body> <div id="body"></div> <script> (function() { var eobotAPI = "http://www.eobot.com/api.aspx?total=245787&json=true"; $.getJSON( eobotAPI, { tags: "Total,BTC,ETH,LTC,STEEM,DOGE,XRP,DASH,GNT,BTS,CURE,XEM,XMR,ZEC,FCT,BCN,REP,LSK,MAID,USD,GRC,GOLD,GHS,GHS2,SCRYPT,BPPD,PPD", tagmode: "any", format: "json" }); $.getJSON( eobotAPI, { get_param: 'value' }, function(data) { $.each(data, function(index, element) { $('body').append($('<div>', { text: element.Total })); }); }); }); </script> </body> But all the same does not work, I can not display the elements from the request in html (in the body of the page), tell me what is wrong?