// require the featch module and set it up with your API key
(async () => {
const response = await fetch(
'https://api-elyssa-app.azurewebsites.net/get_properties/b94e467-27c8-4a14-8c1e-c70133cc73c5 \
{
headers: {
"Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
});
const body = await response.json();
console.log(body);
})();