Skip to main content
Detect taxes, time-delayed traps, blacklists

Honeypot Checks

POST /api/honeypot/honeypot-checks Performs a multi-timestamp simulation to catch hidden taxes and time-based honeypots. High riskScore or isTimeHoneypot: true means you should avoid the token.

Request Body

{
  "tokenAddress": "0xToken",
  "chainId": 1
}

Response

{
  "riskScore": 92,
  "buyTax": 3,
  "sellTax": 15,
  "isTimeHoneypot": true,
  "errorReason": "Tax spikes dramatically after 24 hours",
  "timeTravelResults": [
    { "label": "Immediate", "buyTax": 3, "sellTax": 15, "riskScore": 45 },
    { "label": "24 Hours",  "buyTax": 3, "sellTax": 99, "riskScore": 100 },
    { "label": "7 Days",    "buyTax": 3, "sellTax": 99, "riskScore": 100 }
  ]
}