Edit in JSFiddle

$(document).ready(function () {
    $.ajax({
        type: "GET",
        url: "https://mysafeinfo.com/api/data?list=presidents&format=table&rows=5&sort=id desc&exclude=id,party",
        dataType: "html",
        success: function (result) {
            $("#table").html(result);
        },
        error: function (msg) {
            alert("fetch failed");
        }
    });
});
<div id="table"></div>