# SolDefi Honeypot & Rug Scanner for Solana SPL Tokens

> SolDefi Honeypot & Rug Scanner for Solana SPL Tokens 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 SPL token mint address for rug-pull and honeypot risks, performing on-chain authority checks, transfer tax detection, holder concentration analysis, and a live Jupiter buy/sell round-trip simulation, returning a 0-100 risk score and a AVOID/CAUTION/SAFE verdict.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/honeypot/:mint
- 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/soldefi-honeypot-rug-scanner-for-solana-spl-tokens-e0857206
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nsPoSHk3lDrrLjO4Q2m4N

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 soldefi-honeypot-rug-scanner-for-solana-spl-tokens-e0857206
```

Example prompt: Before I buy, can you run a full honeypot and rug-pull scan on the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want the risk score, any red flags, and whether it's actually sellable on Jupiter?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-signal safety check on a Solana SPL token before buying — especially when you need proof of actual sellability via a live Jupiter simulation rather than just static on-chain flags. Prefer this over simple authority-check tools when honeypot detection (can you exit the token?) is the primary concern, or when vetting tokens for a sniper bot or trading agent that needs a machine-readable AVOID/CAUTION/SAFE verdict.

## Known failure modes

- Invalid or non-existent mint address returns a 400/404 error
- Token with no liquidity pools may fail the Jupiter round-trip simulation
- Very new tokens may have insufficient on-chain data for holder concentration
- Network congestion may delay the live Jupiter simulation step
- Rate limiting or payment failure (x402) returns 402 Payment Required

## How this service works

Rug & honeypot scan for any Solana SPL token by mint. On-chain: mint/freeze authority renounced?, Token-2022 transfer tax, top-holder concentration, plus a live buy->sell round trip via Jupiter as a strong signal the token is sellable at scan time (catches most honeypots). Returns a 0-100 risk score, machine flags and an agent-readable verdict (AVOID/CAUTION/LOW RISK). For snipers, wallets and trading agents vetting a token before buying.

## Output

Returns a 0-100 risk score, boolean machine flags (e.g. mintAuthorityRenounced, freezeAuthorityRenounced, hasTransferTax, isHoneypot, isHighConcentration), a structured summary of on-chain findings (transfer tax rate, top-holder %, pool liquidity), and an agent-readable verdict string of AVOID, CAUTION, or SAFE based on the combined analysis.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "examples": [
        "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
       ],
       "description": "Solana SPL token mint address to scan."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/soldefi-honeypot-rug-scanner-for-solana-spl-tokens-e0857206/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)
