# Solana DeFi Honeypot Batch Scanner

> Solana DeFi Honeypot Batch Scanner is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scans multiple Solana token mint addresses in a single call to detect honeypots, unsellable tokens, and rug indicators, returning a risk score and verdict for each.

## Facts

- Endpoint: POST https://soldefi.thomenz.me/v1/solana/honeypot-batch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-defi-honeypot-batch-scanner-21ad0cb5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xfmqcuTuzT3FQbp30wbVh

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 solana-defi-honeypot-batch-scanner-21ad0cb5 -d '<json body>'
```

Example prompt: Can you scan these Solana token mints for honeypots and rug risk? I want to know if they're safe to trade: DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 and 9xYzHoneypotMint111111111111111111111111111.

## When to prefer this

Use this endpoint when you need to check multiple Solana token mints simultaneously for honeypot and rug-pull risk, especially when you want a batch-efficient single call rather than scanning each token individually. Prefer it over single-token endpoints when evaluating a portfolio or watchlist of tokens before trading.

## Known failure modes

- Invalid or malformed Solana mint address returns an error or ok:false entry
- Payment not included or insufficient USDC causes 402 Payment Required
- Too many mints in a single batch may exceed rate or size limits
- Network congestion on Solana may delay on-chain data freshness
- Unknown or unlaunched mint may return incomplete flag data

## How this service works

Batch rug/honeypot scan: submit up to 10 Solana token mints and get the full per-token honeypot verdict (0-100 risk score, flags, sellability) for each in one paid call — cheaper than scanning individually. For agents vetting a watchlist or a set of launch candidates at once.

## Output

A JSON object containing a per-mint results array, each with: ok (boolean), mint address, flags array (e.g. cannot_sell), a human-readable verdict string, riskLevel (low/critical/etc.), and riskScore (0–100). Also includes total requested/scanned counts, network, and checkedAt timestamp.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "notes": [],
  "network": "solana",
  "results": [
   {
    "ok": true,
    "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
    "flags": [],
    "verdict": "LOW RISK — authorities renounced, sells cleanly",
    "riskLevel": "low",
    "riskScore": 0
   },
   {
    "ok": true,
    "mint": "9xYzHoneypotMint111111111111111111111111111",
    "flags": [
     "cannot_sell"
    ],
    "verdict": "AVOID — cannot sell — honeypot",
    "riskLevel": "critical",
    "riskScore": 100
   }
  ],
  "scanned": 2,
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "requested": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-defi-honeypot-batch-scanner-21ad0cb5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from soldefi.thomenz.me](https://www.zero.xyz/host/soldefi.thomenz.me/llms.txt)
