API Requests
We are currently imposing a limit of 250 requests per day
const generateGuid = async () => {
const url = "https://faas.szolar.ly/function/guidsh-uuid";
const response = await fetch(url);
const guids = await response.text();
console.log(guids);
}
generateGuid();