JSFiddle - React, Tailwind, and code Playground
JavaScript
let url = 'https://moodreads.s3.eu-central-1.amazonaws.com/music/index.json';
let parsedObject = {};
fetch(url)
.then(response => response.json())
.then(data => console.log(data));
console.log(parsedObject);