It’s not a real table, but a readable start
// define url
const url = "http://192.168.1.223/api/app/nl.nielsdeklerk.log/";
// get data
let data = await fetch(url);
// make it json
data = await data.json();
// display data
console.log(data);
Found the code by searching here for ‘fetch url’