Skip to content

Instantly share code, notes, and snippets.

@antiops
Created July 7, 2023 12:41
Show Gist options
  • Save antiops/3604380c741aee2cc8dad9b3664f03fd to your computer and use it in GitHub Desktop.
Save antiops/3604380c741aee2cc8dad9b3664f03fd to your computer and use it in GitHub Desktop.
Get total amount of Discord servers youre in
fetch('https://discord.com/api/users/@me/guilds', {
headers: {
authorization: 'YOUR_TOKEN'
}
})
.then(res => res.json())
.then(data => {
console.log(`[info] Total Server Count: ${data.length}`)
// Display object with all guild metadata
// console.log(data)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment