$.getJSON() helps you to load JSON data from the remote server.

// With the get JSON (frequently used) method
$.getJSON(finalURL, function( data ) {
    console.log(data);
});