The ways in which one can invoke Apex from script( https://community.skuid.com/t/calling-apex-function) increase the API request count(except if you use skuid:page and include your skuid page in a visualforce page).
Why is the following way for apex remoting not supported?
namespace.ControllerName.MethodName([Parameters],
function(result, event){
//In this callback function the response is handled in asyn.
});
Because eventually what we see is a Visualforce page as the url(/apex/skuid_ui?params) has ‘/apex/’.