開発者向けPhishClean API

フィッシング検出、パスワード分析、メールスキャン、バックリンクなりすまし検出などをあなたのアプリに統合。無料の開発者プランから始めて、後でより高い上限にアップグレードできます。

無料
$0
ずっと無料
  • 30リクエスト/時
  • 全8エンドポイント
  • APIキー不要
  • IPベースのレート制限
Business
$49
/月
  • 25,000リクエスト/時
  • 全8エンドポイント
  • Webhook対応
  • 一括スキャン
Enterprise
$700
/年
  • 無制限リクエスト
  • 全8エンドポイント
  • SLA保証
  • 専任サポート

APIアクセスに登録

すでにアカウントをお持ちですか? ログイン

クイックスタート

任意のHTTPクライアントを使用できます。SDKは不要です。

# 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>"}'

完全なAPIリファレンス  ·  MCPサーバー(npm)