Skip to main content
GET
/
addresses
/
{address}
/
poisoning
Detect address poisoning for a specific wallet address
curl --request GET \
  --url https://api.webacy.com/addresses/{address}/poisoning \
  --header 'x-api-key: <api-key>'
{
  "poisoning_detected": true,
  "status": "success",
  "suspicious_transactions": [
    {
      "from": "0x2e5df068f6cf3a1a3e0a70951c685021cb2954c0",
      "to": "0x2e5df068f6cf3a1a3e0a70951c685021cb2954c0",
      "levenshtein": 27,
      "similar_to": "0xe19327f71c21e2bbb5e66d7e1e670f86bcf1ca98",
      "similarity": 0.5,
      "suspicion_score": 0.6038165092468262,
      "token_name": "",
      "tx_hash": "0x79e7b0a45a73b86fe51882d2553355e15bda7bebb6c3e222c09d8fd2f43aa076",
      "value": "0"
    }
  ],
  "summary": {}
}

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

The wallet address to check for poisoning attempts

Query Parameters

chain
enum<string>
required

The EVM-compatible blockchain network to search for poisoning activity

Available options:
eth,
base,
bsc,
pol,
opt,
arb
useCache
boolean
default:true

Whether to use cached data if available (default: true)

refetchData
boolean
default:false

Whether to schedule a background refresh (default: false)

Response

Successful operation

poisoning_detected
boolean
required

Indicates whether potential address poisoning was detected

status
string
required

Status of the poisoning check operation

Example:

"success"

suspicious_transactions
object[]
required

List of transactions that appear suspicious for address poisoning

summary
object

Summary statistics for the poisoning analysis