# Honeypot Risk Screener for Token Contracts

> Honeypot Risk Screener for Token Contracts is a paid API for AI agents from vit-tu-ma-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Screens any EVM or Solana token contract for honeypot risk by analyzing buy/sell transaction imbalances and liquidity-volume anomalies, returning a clean/suspicious/likely_honeypot verdict with reasons.

## Facts

- Endpoint: GET https://vit-tu-ma-production.up.railway.app/api/bazaar/honeypot-check
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/honeypot-risk-screener-for-token-contracts-7b5a68a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j8S6h3gQDjHFmy0PGFLBa

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-risk-screener-for-token-contracts-7b5a68a8
```

Example prompt: Before I buy this token at 0x1234abcd...5678 on Base, can you run a honeypot check on it — I want to know if holders are actually able to sell and whether there are any suspicious liquidity or transaction patterns?

## When to prefer this

Use this endpoint when you need a fast, pre-trade safety check to determine if a token contract is a honeypot — especially when buy/sell asymmetry or liquidity anomalies are a concern. Prefer this over general token analytics when the specific goal is detecting whether holders can exit their positions. Supports both EVM chains (Ethereum, BSC, Base) and Solana.

## Known failure modes

- Invalid or unrecognized contract address returns an error or inconclusive result
- Unsupported chain name causes a validation failure
- Token too new or illiquid may lack sufficient DEX data for analysis
- Rate limiting or payment failure if x402 payment is not processed
- Network or upstream DEX data source unavailability causes timeout

## How this service works

Fast honeypot risk screening for any token contract before trading. Analyzes buy/sell transaction imbalance patterns and liquidity-volume anomalies from DEX data to flag tokens where holders appear unable to sell. Returns a verdict (clean / suspicious / likely_honeypot) with reasons. Supports EVM chains and Solana. Designed for pre-trade safety checks by trading agents.

## Output

Returns a verdict label (clean, suspicious, or likely_honeypot), specific reasons explaining the classification, and signals derived from buy/sell transaction imbalance patterns and liquidity-volume anomalies on the specified chain.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address",
      "chain"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain name, e.g. base, bsc, ethereum, solana"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/honeypot-risk-screener-for-token-contracts-7b5a68a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vit-tu-ma-production.up.railway.app](https://www.zero.xyz/host/vit-tu-ma-production.up.railway.app/llms.txt)
