-
How can I see if a user have nitro or not? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello, the Discord API does not give bots the possibility to use this endpoint. In Discord.py it's defined in the class Profile > ARealWant |
Beta Was this translation helpful? Give feedback.
-
Keep in mind you can detect Nitro in some ways like checking if the user's avatar is animated or by their tag. (like 0001) |
Beta Was this translation helpful? Give feedback.
Hello,
the Discord API does not give bots the possibility to use this endpoint.
Discord user-accounts have the ability to make this request, so it would be therotically possible via a selfbot.
In Discord.py it's defined in the class Profile >
discord.Profile
with e.g.premium
. A selfbot could query premium (Discord nitro).If you try to reach this endpoint with a bot you also get the error that the whole
Client.fetch_user_profile
method is not reachable.ARealWant