Anyone know how to access the JSON-RPC server? Not the website but the raw JSON data behind the API
Unfortunately there doesn't seem to be a raw JSON data available (from what i can see)
Maybe @dstm could add that in the future?
The first post does seem to mention JSON api being available? It might be useful to provide a bit more info on that i guess.
You have a documentation inside the zipfile of the miner called json-rpc, everything needed in here.

Sorry to bother but, i'm with mlotis and cTnko on this one, what am I doing wrong?
I think this could help you a bit (this utilizes jquery for the $.ajax method
$.ajax({
url: 'http://192.168.1.6:42000/',
method: 'POST',
dataType: 'json',
data: {'id': 1, 'method': 'getstat'}
}).done(function (data) {
console.log(data);
});