I really need your help, i cant get all data from this API: http://datahub.virk.dk/api/2/rest/package/smiley-kontrolrapporter
this is my code
<div class="mypanel"></div>
<script>
$.getJSON('http://datahub.virk.dk/api/2/rest/package/smiley-kontrolrapporter', function(data) {
var text = `<h2>${data.license_title}</h2><br>
<h2>${data.url}</h2><br>
<h2>${data.url}</h2><br>
<h2>${data.url}</h2><br>
${data.resources.description}`
$(".mypanel").html(text);
});
</script>
please help me. thank you.