Edit in JSFiddle

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