Is this token safe to buy? Honeypot detection, rug-pull and scam check for any ERC-20 toke
Is this token safe to buy? Honeypot detection, rug-pull and scam check for any ERC-20 token contract -- flags can't-sell traps, hidden mints, malicious buy/sell taxes, unverified source, and holder concentration. GoPlus-powered token security scan with risk score 0-100. Not an audit.
100000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-12
updated
Provider
hexscan.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x841Ef35b7b7ee4C820BFF040369a8Ade4741b45d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"chain": "ethereum"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"buyTax": "0%",
"findings": [],
"honeypot": false,
"riskLevel": "MINIMAL",
"riskScore": 5,
"sellTax": "0%",
"sourceVerified": true,
"tokenName": "USD Coin"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"address": {
"description": "Contract address",
"type": "string"
},
"chain": {
"description": "Chain name",
"type": "string"
}
},
"required": [
"address",
"chain"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://hexscan.xyz/scan" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://hexscan.xyz/scan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://hexscan.xyz/scan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7585.json, and this resource appears in /discovery/resources and /discovery/search.