Skip to content

$isBotVerified

$isBotVerified checks if the given bot is verified by Discord.

Usage

$isBotVerified[clientId?]

Parameters

FieldTypeDescriptionRequired
clientId?numberThe ID of the bot you want to check its verification status.false

Example(s)

This will check if your bot is verified and return either true or false:

1
client.command({
2
name: "isBotVerified",
3
code: `
4
$isBotVerified[$clientId]
5
`
6
});