This is a list of verified scammers that I have found on the internet. Please note that I have not personally validated every single email address, so there may be some mistakes. If you find any errors, please contact me or send a pull request to help me fix them.
To check if an email address is on the list, then run
git clone https://github.com/BiltuDas1/ScamEmails
cd ScamEmails
python verify.py <email-address>
Replace <email-address>
with the actual email address you want to check.
If you want to implement this project into your application, you can use the provided API. The API can return results in either plain text or JSON format.
To use the API, send a POST request to the following URL with the email address and desired output format:
https://scam-emailapi.vercel.app/api
You can also send a GET request to the URL in the following format:
https://scam-emailapi.vercel.app/[email protected]&format=text
Note that the format parameter can only be set to either "text" or "json". If no format is specified, JSON will be the default.
Here's an example of checking if "adavid244[at]yahoo[dot]com" is in the database using a POST request in cURL:
curl -s -X POST \
-d '[email protected]' \
https://scam-emailapi.vercel.app/api
# Output: {"ok":true, "found":true}
Here's an example of checking if "adavid244[at]yahoo[dot]com" is in the database using a POST request in Javascript Fetch:
const text = {
email: '[email protected]'
};
const request = fetch('https://scam-emailapi.vercel.app/api', {
method: "POST",
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: new URLSearchParams(text).toString()
})
.then((data) => data.json())
.then((data) => console.log(data));
// Output: { ok: true, found: true }
Here's an example of checking if "adavid244[at]yahoo[dot]com" is in the database using a POST request in Python requests:
import requests
import json
data = {
'email': '[email protected]'
}
response = json.loads(requests.post('https://scam-emailapi.vercel.app/api', data=data).text)
print(response)
# Output: {'ok': True, 'found': True}
If you are interested then you can join into our telegram group @techsouls0 or channel @tecsouls