Abra um arquivo JSON sem baixar
fetch("https://support.oneskyapp.com/hc/en-us/article_attachments/202761627/example_1.json")
.then(response => response.json())
.then(json => console.log(json));
MrMalfunction