# Honeypot Check — ERC-20 Token Safety Scanner

> Honeypot Check — ERC-20 Token Safety Scanner is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Simulates buy/sell/transfer transactions for any Base or Ethereum ERC-20 token and returns a honeypot verdict, tax percentages, and failure reason to detect sell-blocking scams before swapping.

## Facts

- Endpoint: POST https://x402.agentutility.ai/honeypot-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/honeypot-check-erc-20-token-safety-scanner-6f40ccb2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_18Ja4T1rs3y5HAlAqrrsA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability honeypot-check-erc-20-token-safety-scanner-6f40ccb2 -d '<json body>'
```

Example prompt: Before I swap into this token, run a honeypot check on contract address 0xAbC...123 on the Ethereum network — I need to know if it's a honeypot, what the buy and sell taxes are, and whether simulated transactions succeed.

## When to prefer this

Choose this endpoint when you need a fast, automated pre-swap safety check for any ERC-20 on Ethereum or Base, especially when running an autonomous trading agent that needs to screen tokens before executing swaps. It is particularly valuable over manual inspection because it simulates actual buy/sell transactions and returns structured tax data and a definitive honeypot verdict. Prefer this over general contract auditing tools when you need real-time simulation results rather than static code analysis.

## Known failure modes

- Invalid or non-existent contract address — simulation fails with an error or empty result
- Unsupported network specified — returns error if chain is not Base or Ethereum
- Contract has no liquidity — simulation may return inconclusive or failed result
- Token is a proxy or upgradeable contract — simulation results may not reflect actual behavior
- Rate limit or payment failure — x402 payment not processed, request rejected
- Newly deployed contract with no on-chain activity — simulation success flag may be unreliable

## How this service works

Honeypot.is buy/sell simulation for any Base or Ethereum ERC-20. Returns is_honeypot verdict, buy/sell/transfer tax %, simulation success flag, and a reason string when a honeypot is detected. Use before every swap to detect sell-blocking risk.

## Output

Returns a JSON object containing: is_honeypot (boolean verdict), buy_tax (%), sell_tax (%), transfer_tax (%), simulation_success (boolean flag indicating whether the simulated transaction completed), and a reason string explaining why a honeypot was detected when applicable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "token_address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum",
        "bsc"
       ],
       "type": "string",
       "description": "EVM chain. Default 'base'."
      },
      "token_address": {
       "type": "string",
       "description": "0x-prefixed 20-byte EVM token contract address."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "risk": {
       "type": "object",
       "properties": {
        "level": {
         "type": "string"
        },
        "reasons": {
         "type": "array"
        }
       }
      },
      "chain": {
       "type": "string"
      },
      "token": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "symbol": {
         "type": "string"
        },
        "address": {
         "type": "string"
        },
        "decimals": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "contract": {
       "type": "object",
       "properties": {
        "has_owner": {
         "type": "boolean"
        },
        "has_proxy": {
         "type": "boolean"
        },
        "has_renounced_ownership": {
         "type": "boolean"
        }
       }
      },
      "simulation": {
       "type": "object",
       "properties": {
        "buy_tax_pct": {
         "type": "integer"
        },
        "is_honeypot": {
         "type": "boolean"
        },
        "sell_tax_pct": {
         "type": "integer"
        },
        "max_buy_amount": {
         "type": "string"
        },
        "max_sell_amount": {
         "type": "string"
        },
        "transfer_tax_pct": {
         "type": "integer"
   
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": {
   "level": "low",
   "reasons": []
  },
  "chain": "base",
  "token": {
   "name": "Wrapped Ether",
   "symbol": "WETH",
   "address": "0x4200000000000000000000000000000000000006",
   "decimals": 18
  },
  "source": "https://api.honeypot.is",
  "contract": {
   "has_owner": false,
   "has_proxy": false,
   "has_renounced_ownership": true
  },
  "simulation": {
   "buy_tax_pct": 0,
   "is_honeypot": false,
   "sell_tax_pct": 0,
   "max_buy_amount": "1000000000000000000000",
   "max_sell_amount": "1000000000000000000000",
   "transfer_tax_pct": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/honeypot-check-erc-20-token-safety-scanner-6f40ccb2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
