PhishClean API for Developers

Integrate phishing detection, password analysis, email scanning, and more into your app. Free tier included — no credit card required.

Free
$0
forever
  • 30 requests/hour
  • All 7 endpoints
  • No API key needed
  • IP-based rate limiting
Business
$49
/month
  • 25,000 requests/hour
  • All 7 endpoints
  • Webhook support
  • Bulk scanning
Enterprise
$700
/year
  • Unlimited requests
  • All 7 endpoints
  • SLA guarantee
  • Dedicated support

Sign Up for API Access

Already have an account? Log in

Quick Start

Use any HTTP client. No SDK required.

# Check a URL for phishing (free, no key needed) curl -X POST https://www.phishclean.com/api/v1/check-link \ -H "Content-Type: application/json" \ -d '{"url": "https://paypal-secure.xyz/login"}' # With API key for higher rate limits curl -X POST https://www.phishclean.com/api/v1/check-link \ -H "Content-Type: application/json" \ -H "Authorization: Bearer pk_live_your_key_here" \ -d '{"url": "https://paypal-secure.xyz/login"}'
# Check password strength curl -X POST https://www.phishclean.com/api/v1/check-password \ -H "Content-Type: application/json" \ -d '{"password": "Summer2024!"}' # Scan email for phishing curl -X POST https://www.phishclean.com/api/v1/check-email \ -H "Content-Type: application/json" \ -d '{"body": "Dear customer, verify your account immediately or it will be suspended..."}' # Scan code for leaked secrets curl -X POST https://www.phishclean.com/api/v1/scan-secrets \ -H "Content-Type: application/json" \ -d '{"source": "const key = \"AKIA1234567890ABCDEF\""}'

Full API Reference  ·  MCP Server (npm)