API PhishClean per sviluppatori

Integra nella tua app rilevamento del phishing, analisi delle password, scansione delle email, rilevamento di impersonificazione dei backlink e altro. Inizia con il piano gratuito per sviluppatori e passa in seguito a limiti più alti.

Gratis
$0
per sempre
  • 30 richieste/ora
  • Tutti gli 8 endpoint
  • Nessuna chiave API richiesta
  • Limite di richieste basato su IP
Business
$49
/mese
  • 25.000 richieste/ora
  • Tutti gli 8 endpoint
  • Supporto webhook
  • Scansione in blocco
Enterprise
$700
/anno
  • Richieste illimitate
  • Tutti gli 8 endpoint
  • Garanzia SLA
  • Supporto dedicato

Registrati per l'accesso API

Hai già un account? Accedi

Avvio rapido

Usa qualsiasi client HTTP. Nessun SDK richiesto.

# 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\""}' # Detect backlink impersonation on a suspicious page curl -X POST https://www.phishclean.com/api/v1/analyze-backlinks \ -H "Content-Type: application/json" \ -d '{"url": "https://paypal-secure.xyz/login", "html": "<form><input type=\"password\"></form><a href=\"https://www.paypal.com/privacy\">Privacy</a>"}'

Riferimento API completo  ·  Server MCP (npm)