fetch('https://apiYouWantToFetch.com/players') // returns a promise .then(response => response.json()) // converting promise to JSON .then(players => console.log(players)) // console.log to view the response