Thank you so much for your reply. I’ve figure out doing like this:

    $.getJSON('mybubbleapp/version-test/api/1.1/obj/users', function(data) {
        
        var items = [];
          $.each( data, function( key, val ) {
            items.push( "<li id='" + key + "'>" + val + "</li>" );
          });
         
          $( "<ul/>", {
            "class": "my-new-list",
            html: items.join( "" )
          }).appendTo( "body" );
        console.log(data)
    });

Now I’m only getting a Object.object output, but probably I’m doing something wrong :wink: