# Solana Token Exit Risk Assessment

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

Assesses whether you can actually exit a Solana SPL token right now by combining Birdeye whale/smart-money signals with a live Jupiter exit-slippage ladder to produce a LOW/ELEVATED/HIGH exit risk verdict.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/exit-risk/:mint
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-exit-risk-assessment-e725c463
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k7sVYRoFqTnKKW6WW0g0J

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-token-exit-risk-assessment-e725c463
```

Example prompt: Can I safely exit my position in the Solana token with mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 right now? I want to know if whales are dumping, how bad the slippage is at $10k, and whether the exit risk is LOW, ELEVATED, or HIGH.

## When to prefer this

Use this endpoint when you need a combined smart-money + live-slippage exit assessment for a specific Solana token, especially before executing a large sell. Prefer this over generic liquidity checkers when you care about whale behavior (are smart wallets dumping?) AND actual Jupiter exit cost at your size — the combination of on-chain signal and real-time slippage ladder is the unique value here. For general rug/honeypot screening, use the sibling rug-scan endpoint instead.

## Known failure modes

- Invalid or unrecognized mint address returns an error
- Token has no active pools or liquidity, making slippage simulation impossible
- Jupiter quote unavailable for illiquid token
- Birdeye data unavailable or stale for obscure tokens
- Payment not provided or x402 payment rejected (402 response)
- Rate limiting if called too frequently

## How this service works

Can you actually EXIT this Solana token right now, and at what cost? Crosses Birdeye smart-money signals — whale net buy/sell flow (24h), bundler/sniper manipulation tags, 1h sell-pressure and holder count — with a LIVE Jupiter exit-slippage ladder at $1k and $10k. Returns an exit_risk verdict (LOW/ELEVATED/HIGH): are the whales dumping into a thin book that traps you, or is the exit clean? The sellability wedge competitors lack. For exit-planning and trading agents.

## Output

Returns an exit_risk verdict of LOW, ELEVATED, or HIGH, backed by whale net buy/sell flow over 24h, bundler/sniper manipulation tags, 1-hour sell pressure, holder count, and live Jupiter slippage estimates at both $1k and $10k exit sizes — telling you whether the order book is deep enough to exit cleanly or if you risk being trapped.

## 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 assess exit risk for."
      }
     }
    },
    "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/solana-token-exit-risk-assessment-e725c463/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)
