# SolDeFi Full Rug Workup — Solana Token Multi-Check Scan

> SolDeFi Full Rug Workup — Solana Token Multi-Check Scan is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Runs a bundled full-stack safety scan on a Solana SPL token mint: honeypot/sellability, LP durability, deployer reputation, and live exit-risk, returning an aggregated verdict plus a separate exit-risk block.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/full-scan/:mint
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/soldefi-full-rug-workup-solana-token-multi-check-scan-22927c71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_koo7OVHkRzuxGwjtfycT9

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-full-rug-workup-solana-token-multi-check-scan-22927c71
```

Example prompt: Run a full rug workup on the Solana token with mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want the honeypot check, LP durability, deployer reputation, and live exit-risk all in one shot.

## When to prefer this

Choose this endpoint over the individual scans (honeypot, LP, deployer, exit-risk) when you need a complete due-diligence picture in a single call and want to save cost (~$0.08 vs ~$0.11 for four separate calls). Ideal for agents performing pre-trade safety checks on unknown Solana tokens, or screening new token launches before recommending them.

## Known failure modes

- Invalid or malformed mint address returns a 400 error
- Mint address not found on Solana mainnet returns a 404 or empty result
- Downstream Birdeye or Jupiter API unavailability causes partial or failed response
- Payment not completed (x402) results in 402 Payment Required before data is returned
- Rate limiting or quota exhaustion returns a 429 error

## How this service works

One-call full rug workup for a Solana token: bundles the honeypot/sellability scan, liquidity-durability (LP) check, deployer reputation and live exit-risk (Birdeye smart-money x Jupiter exit-slippage) — cheaper than buying the four separately (~$0.035 -> $0.03). The overall verdict aggregates the three structural checks; exit-risk ships as its own block and never inflates it, because whale flow is a trading signal, not a scam signal. Informational signal, not a guarantee.

## Output

Returns an aggregated structural safety verdict covering honeypot/sellability, liquidity pool durability, and deployer reputation, plus a separate exit-risk block with Birdeye smart-money signals and Jupiter exit-slippage estimates. The overall verdict never inflates based on whale flow signals.

## 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": [
        "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
       ],
       "description": "Solana SPL token mint to run a full multi-check scan on."
      }
     }
    },
    "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-full-rug-workup-solana-token-multi-check-scan-22927c71/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)
