I have a URL \"http://localhost:8888/api/rest/abc\" which will give following json data. I wants to get this data in my UI using Jquery or java script. I\'m trying
http://localhost:8888/api/rest/abc
jquery.ajax({ url: `//your api url` type: "GET", dataType: "json", success: function(data) { jQuery.each(data, function(index, value) { console.log(data); `All you API data is here` } } });