Hi , Try Using Normal JAVASCRIPT: var ajax = new XMLHttpRequest(); var seconds = new Date().getTime(); // avoid cache problem var additionalParam = "" // if any var URL = "http://www.domainname.com/api/method/"; // your URL var authURL = URL+ additionalParam+'&tmp=' + seconds; ajax.open("GET", authURL + '', false); ajax.send(); if (ajax.readyState == 4 && (ajax.status == 200)) { console.log("ajax.responseText" + ajax.responseText); } Thanks.