Discord Info fetch("https://discord.com/api/v9/invites/spoiledsoftie?with_counts=true") .then(data => data.json()) .then(data => { let discordName = document.getElementById("discord-name"); let discordImage = document.getElementById("discord-image"); let discordOnline = document.getElementById("discord-online"); let discordTotal = document.getElementById("discord-total"); discordName.innerText = data.guild.name; discordImage.src = `https://cdn.discordapp.com/icons/${data.guild.id}/${data.guild.icon}.png`; discordOnline.innerText = data.approximate_presence_count + " Online"; discordTotal.innerText = data.approximate_member_count + " Members"; });