Buka file JSON tanpa mengunduh

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