Centralized Spam Detection for Contact Forms
Protect your Rails applications from spam with our powerful API-based detection service. Real-time filtering using curated blocklists and intelligent keyword detection.
Powerful Spam Protection
Everything you need to keep spam out of your contact forms
API-Based Detection
Simple REST API integration that returns instant spam detection results with confidence scores.
Secure Authentication
OAuth-style API credentials with rate limiting and secure token-based authentication.
Curated Blocklists
Maintained lists of known spam emails and keywords, updated by our security team.
Per-App Customization
Override global rules with app-specific blocklists tailored to your unique needs.
Real-Time Processing
Sub-200ms response times ensure your contact forms remain fast and responsive.
Detailed Analytics
Monitor spam trends and detection performance with comprehensive dashboards.
How It Works
Get spam protection up and running in minutes
Create Your Application
Sign up and register your first application to receive API credentials for secure integration.
Integrate the API
Add our lightweight client library to your Rails app or use our REST API directly from any framework.
Block Spam Automatically
Every contact form submission is checked against our detection algorithms before reaching your inbox.
Simple Integration
Add spam protection to your Rails application in just a few lines of code
# Ruby on Rails integration
require 'is_it_spam'
# Configure your API credentials
client = IsItSpam::Client.new(
api_key: 'your_api_key',
api_secret: 'your_api_secret'
)
# Check if a contact form submission is spam
result = client.check_spam(
name: params[:name],
email: params[:email],
message: params[:message]
)
if result['spam']
# Handle spam submission
render json: { error: 'Spam detected' }, status: 422
else
# Process legitimate submission
ContactSubmission.create!(contact_params)
end
Client libraries available for Ruby, JavaScript, and more frameworks coming soon.
Ready to Stop Spam?
Join hundreds of Rails applications already protected by our spam detection service.