Nik_Dev,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function() {
$.getJSON("https://api.privatbank.ua/p24api/pubinfo?json&exchange&coursid=5", function(data) {
var items = [];
$.each(data, function(key, val) {
var html = "";
Object.keys(val).forEach(function(key) {
if (typeof val[key] != "object") html += key + " : " + val[key] + "<br>"
});
items.push('<li id="' + key + '">' + html + "</li>")
});
$("<ul/>", {
"class": "my-new-list",
html: items.join("")
}).appendTo("#list")
})
});
</script>
</head>
<body>
<div id="list"></div>
</body>
</html>