Your customers hate CAPTCHA but they'll love your seamless process.
Remove friction with FraudTagger
Your customer enters their email and we make sure they are legit - It's that simple!.
FraudTagger works silently
Fraudtagger can be integrated into existing apps and onboarding flows in minutes.
developers love FraudTagger
Onboarding friction is a huge barrier to entry for any mobile app or web application. CAPTCHA, the once king of security is now a weak defence against AI armed threats.
Email is still the number 1 primary identification mechanism available to any business, and 2FA of course let's apps easily check that the entity registering has access to the email address being used .. but thats it!
Scammers and botnets use disposable, machine generated emails to flood services and fool apps into onboarding ghosts!
Toridion hit this head on with its class leading AI engine "FraudTagger". Trained on 50 million emails, and almost 1 billion data points to spot the tell tale signs of machine generated emails with staggering accuracy.
The result?
A smart onboarding first line of defence that can detect the majority of bot generated and disposable emails in the background and help you direct the onboarding flow or flag these accounts during signup.
You can let the good guys though and change the rules for suspect accounts.
It's a smart firewall for your app that can outperform CAPTCHA methods in many cases whilst making it easier for your genuine users!
| 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.
Powered by TQNN, 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