FraudTagger uses a powerful model to detect bad actors before they ever get through your signup flow.
Protect your product from fraud, bots, and fake users — with one simple API call.
Plan | Monthly | API Calls | Ideal For |
---|---|---|---|
Starter | £49.00 | 1,000 | Indie devs & prototypes |
Growth | £149.00 | 10,000 | Scaling SaaS & apps |
Scale | £499.99 | 100,000 | High volume apps and games |
Not just another blacklist or deliverability checker! No other AI model scans almost a billion parameters in realtime to weed out usernames that carry the hallmarks of bots and spammers.
FraudTagger uses a powerful model to detect bad actors before they ever get through your signup flow.
Protect your product from fraud, bots, and fake users — with one simple API call.
Other tools check syntax. FraudTagger checks for intelligence — flagging AI-generated, spammy, or unnatural email patterns that slip past regex and DNS checks.
Mobile apps. SaaS products. Games. Wherever fake signups cost you money, FraudTagger stops the bleeding.
Get detailed scoring and fraud likelihood with sub-second response times. Act instantly — before spammy users pollute your data.
Integrate FraudTagger into your mobile apps, email-clients, SaaS signup flows and existing website services using a few lines of code.
The API allows you to programmatically check if an email address is likely to be spammy or machine-generated using a simple GET request. Just pass the email and your API key as parameters:
GET https://api.toridion.com/v1/scoreUsername/?email=joy1@walletx-fakers.net&apikey=YOUR_API_KEY
{
"metadata": {
"name": "TQNN Fraud Tagger",
"endpoint": "/v1/scoreUsername",
"method": "GET",
"randomness_range": "0-100",
"entropy_range": "0-4",
"confidence_range": "0-100",
"request_id": "680944f3e3597",
"timestamp": 1745437939,
"runtime_seconds": 0.11072802543640137,
"verbose_mode": "yes",
"called_by": "Unknown AI system",
"energy": {
"energy_usage_kWh": "0.0000052288",
"carbon_emissions_mg": "1.2183158576",
"equivalent_meters_driven": "0.0101526321"
}
},
"data": {
"email": "joy1@walletx-fakers.net",
"score": 9,
"score_engine": "V1.0.4",
"release": "Beta",
"randomness": "89.66",
"entropy": "3.59",
"confidence": "89.83",
"classification": "SPAM",
"recommended_action": "quarantine or flag for further investigation",
"reasoning": {
"spam_lists_check": "NOT_EVALUATED",
"similarity_to_known_spam": "Some similarity to known spam",
"randomness_score": "The randomness is quite high at (89.66) which is unusual for real names and words",
"entropy_score": "Very High Entropy (3.59) (Fully Random)"
}
}
}
<?php
$email = 'joy1@walletx-fakers.net';
$apikey = 'YOUR_API_KEY';
$url = "https://api.toridion.com/v1/scoreUsername/?email=" . urlencode($email) . "&apikey=" . $apikey;
$response = file_get_contents($url);
$data = json_decode($response, true);
echo "Classification: " . $data['data']['classification'];
?>
import requests
email = "joy1@walletx-fakers.net"
apikey = "YOUR_API_KEY"
url = "https://api.toridion.com/v1/scoreUsername/?email={email}&apikey={apikey}"
response = requests.get(url)
data = response.json()
print("Classification:", data["data"]["classification"])
STARTER
£49
GROWTH
£149
SCALE
£499