# Solana Honeypot Token Scanner

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

Scans a Solana token mint address for honeypot and rug-pull risk indicators, including sell-block detection, freeze authority, and holder concentration analysis.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/honeypot/%7Bmint%7D
- 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/solana-honeypot-token-scanner-5f62325e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_URa-wzGl6ibBP7sfdffD3

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-honeypot-token-scanner-5f62325e
```

Example prompt: Can you check if this Solana token is a honeypot — mint address 9xYzExampleHoneypotMint1111111111111111111 — I want to know if I can actually sell it and what the risk score looks like.

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.02 USDC) honeypot and rug-pull risk verdict for a specific Solana SPL token before trading. Prefer it over manual on-chain inspection when you need structured risk scores, sell-block detection, freeze authority checks, and holder concentration in a single API call. It is especially valuable in automated trading bots, portfolio scanners, or DeFi dashboards that need to vet tokens programmatically on Solana.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown or very new mint with no on-chain data may return incomplete results
- Network congestion on Solana may cause delayed or stale data
- Payment failure via x402 (insufficient USDC balance) blocks the request
- Rate limiting if too many calls are made in rapid succession

## How this service works

Paid x402 API for Solana DeFi risk intelligence — rug/honeypot scan, wash-trade detection, real slippage, risk-adjusted pool yield. Pays on Base + Solana.

## Output

Returns a JSON object containing: a verdict string (e.g. 'AVOID — cannot sell'), a riskLevel (e.g. 'critical'), a numeric riskScore (0–100), an array of flags (e.g. 'cannot_sell', 'freeze_authority_active', 'concentration_extreme'), tradeability details (canBuy, canSell, liquidityDepthUsd), holder concentration metrics (top1Pct, top10Pct), token authority statuses (mintAuthorityActive, freezeAuthorityActive), token supply and decimals, and a checkedAt timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "9xYzExampleHoneypotMint1111111111111111111",
  "flags": [
   "cannot_sell",
   "freeze_authority_active",
   "concentration_extreme"
  ],
  "notes": [],
  "token": {
   "supply": "1000000000000000",
   "program": "spl-token",
   "decimals": 6
  },
  "holders": {
   "sampled": 20,
   "top1Pct": 61.2,
   "top10Pct": 88.4
  },
  "network": "solana",
  "verdict": "AVOID — cannot sell — honeypot, freeze authority active (can block sells), top-10 hold 88%",
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "riskLevel": "critical",
  "riskScore": 100,
  "authorities": {
   "mintAuthorityActive": false,
   "freezeAuthorityActive": true
  },
  "tradeability": {
   "canBuy": true,
   "canSell": false,
   "recoveredPct": null,
   "liquidityDepthUsd": 0,
   "sellPriceImpactPct": null
  },
  "transferFeeBps": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-honeypot-token-scanner-5f62325e/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)
