# Token Honeypot Check

> Token Honeypot Check 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-14).

Analyzes a token contract on Base to detect honeypot traps, simulate buy/sell taxes, and assess smart contract risk before trading.

## Facts

- Endpoint: POST https://x402.agentutility.ai/token-honeypot-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-honeypot-check-906093c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nyiX3Ix5lBvlOEE25MkIt

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 token-honeypot-check-906093c6 -d '<json body>'
```

Example prompt: Before I buy, can you check if the token at 0x4200000000000000000000000000000000000006 on Base is a honeypot — I want to know the buy and sell taxes, whether the contract is renounced, and the overall risk level.

## When to prefer this

Use this endpoint when an agent needs to assess the safety of a specific ERC-20 token on Base before executing a trade or recommending it to a user. It is purpose-built for honeypot detection and tax simulation, backed by honeypot.is data. Prefer this over generic contract scanners when you need structured buy/sell tax simulation and contract ownership checks in a single call for Base-chain tokens.

## Known failure modes

- Invalid or non-existent contract address returns an error or null token data
- Token not deployed on Base returns a network mismatch error
- Unverified or very new contracts may have incomplete simulation results
- Network timeouts from the upstream honeypot.is API
- Malformed address format causes request rejection

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

Returns a structured JSON object with: honeypot detection result (true/false), risk level (low/medium/high) with reasons, buy/sell/transfer tax percentages, max buy and sell amounts, contract metadata (ownership, proxy, renounced status), token name/symbol/decimals/address, and the data source URL.

## Request schema (JSON Schema)

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