A robust token checker that works with every Discord token and avoids rate limits. This tool verifies the validity of Discord tokens by making requests to the Discord API and identifying valid tokens.
- Rate Limit Handling: Designed to avoid hitting Discord's rate limits.
- Batch Processing: Efficiently checks a list of tokens.
- Valid Token Identification: Saves valid tokens to a separate file.
- Python 3.x
requests
library
You can install the required library using pip:
pip install requests
- Clone the repository:
- Prepare your tokens:
- Run the script:
- Check the results:
git clone https://github.com/jordanbardella/DiscordTokenChecker.git
cd DiscordTokenChecker
Create a file named tokens.txt
in the repository directory. This file should contain one token per line.
python checker.py
After the script has run, valid tokens will be saved in valid_tokens.txt
.
The script reads tokens from tokens.txt
, checks each token's validity by making a request to the Discord API, and then saves the valid tokens to valid_tokens.txt
.
token1
token2
token3
...
This tool is intended for educational purposes only. Ensure you have permission to use and verify the tokens. Unauthorized use of tokens may violate Discord's terms of service.
This project is licensed under the MIT License. See the LICENSE
file for details.