One API call to detect free trial abuse, fake users, and fraudulent signups. Built for small online businesses who can't afford enterprise fraud tools.
🔒 No credit card required. Early adopters get lifetime 50% off.
Detect disposable emails, temporary domains, and suspicious patterns in email addresses.
Validate phone numbers, detect VoIP services, and flag numbers used across multiple accounts.
Identify VPNs, proxies, hosting providers, and high-risk IP addresses in real-time.
Track suspicious device patterns and detect users creating multiple accounts.
ML-powered risk scoring based on signup patterns and historical fraud data.
Set your own thresholds and rules. Block, flag, or allow based on your risk tolerance.
// Check a signup in one API call
const response = await fetch('https://api.litekyc.com/v1/check', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: '[email protected]',
phone: '+1234567890',
ip: '192.168.1.1',
device_id: 'abc123...'
})
});
const { risk_score, signals } = await response.json();
// Block high-risk signups
if (risk_score > 80) {
return { error: 'Signup blocked' };
}