Protect your users from spam calls with instant phone number verification and spam detection powered by AI and community intelligence
Check a phone number in just one API call
curl -X POST https://api.cleargeo.tech/v1/phoneguard/check \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"phone_number": "+1-800-000-0000"
}'
import requests
response = requests.post(
'https://api.cleargeo.tech/v1/phoneguard/check',
headers={'X-API-Key': 'your_api_key'},
json={'phone_number': '+1-800-000-0000'}
)
data = response.json()
print(f"Spam Score: {data['spam_score']}/100")
print(f"Risk Level: {data['risk_level']}")
print(f"Recommendation: {data['recommendation']}")
const response = await fetch('https://api.cleargeo.tech/v1/phoneguard/check', {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
phone_number: '+1-800-000-0000'
})
});
const data = await response.json();
console.log('Spam Score:', data.spam_score);
console.log('Is Spam:', data.is_spam);
Need more? Contact us for Enterprise pricing with unlimited checks.
Our AI-powered system achieves 95% accuracy, verified against millions of real-world spam reports and continuously improved.
We combine community reports, AI behavioral analysis, carrier data, and public spam registries to provide comprehensive intelligence.
Absolutely! Our RESTful API works with any platform. We provide SDKs for iOS, Android, and major frameworks.
Yes! Business and Enterprise tiers include bulk checking API for validating thousands of numbers at once.
Start with 100 free checks. No credit card required.