Tools / Phishing Email Checker
Phishing Email Checker icon

Phishing Email Checker

Check suspicious emails, screenshots, and links

Analyze suspicious emails for phishing, spoofing, impersonation, and malicious links. Accepts copied message text, sender details, headers, screenshots, and URLs, then returns a scored verdict with concrete evidence and next-step guidance.

1 skillv0.03
Check Email

Score a suspicious email for phishing risk using sender clues, message content, headers, screenshots, and link checks.

Returns: A phishing verdict with scored evidence, sender and header findings, link checks, and a recommended next action
Parameters
subjectstringEmail subject line if available
fromstringSender line such as "PayPal Support <alerts@example.com>" or just the sender email address
email_textstringCopied plain text or HTML-stripped email body content
raw_headersstringOptional raw email headers including Authentication-Results, Reply-To, and Return-Path
image_urlstringOptional public URL of a screenshot or image of the email for vision analysis
linksarrayOptional list of URLs found in the email body or buttons (max 10 is recommended)
check_live_sourcesbooleanWhether to enrich with live domain and link lookups. Set false for a local heuristics-only pass.
Example
Score a suspicious payroll email from copied text only
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "phishing-email-checker",
  "skill": "check_email",
  "input": {
    "subject": "Urgent: direct deposit update required",
    "from": "Payroll Support <payroll-update@gmail.com>",
    "email_text": "Please verify your payroll account immediately to avoid delayed salary payment. Reply with your bank details today.",
    "check_live_sources": false
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.032026-04-01
  • Added no-key OpenPhish and urlscan enrichment plus URLhaus host checks for linked domains
v0.022026-04-01
  • Added live sender-domain DNS and reputation checks plus PhishTank URL enrichment
v0.012026-04-01
  • Initial release with mixed-evidence email phishing analysis for text, headers, screenshots, and links

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"phishing-email-checker","skill":"check_email","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Related Tools