Skip to main content
POST /api/phishing/phishing-checks Scans for common phishing vectors in token contracts. A low score means the contract is generally safe from known phishing vectors.

Request Body

{
  "tokenAddress": "your target token address here",
  "chainId": 1
}

Response

{
  "riskAssessment": "8/100",
  "verdict": "✅ No immediate phishing threats detected.",
  "modules": {
    "Approve Scam": { 
      "confidence": "medium", 
      "result": "No strong patterns" 
    },
    "Ether Forwarding": { 
      "confidence": "high", 
      "callOpcodeCount": 10, 
      "flaggedEntity": "0x..." 
    },
    "Proxy Scam": "Clean",
    "Permit Check": "Clean",
    "Domain Check": "No suspicious URLs"
  }
}