# Solana DeFi Exit Risk Scanner

> Solana DeFi Exit Risk Scanner 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-13).

Analyzes exit risk for a Solana token mint address, returning risk score, whale flow, sell pressure, exit slippage estimates, and manipulation flags.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/exit-risk/%7Bmint%7D
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-defi-exit-risk-scanner-2f6c9714
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zbrDvChSkXDbx_tgK11Lo

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-exit-risk-scanner-2f6c9714
```

Example prompt: What's the exit risk on Solana token 9xYzExampleTrappedMint11111111111111111111? I want to know if whales are dumping it, how bad the slippage would be to exit $10k, and whether I should be worried about being trapped.

## When to prefer this

Use this endpoint when you need a fast, single-call exit risk assessment for a specific Solana token mint — specifically when you want to know if you're trapped, if whales are dumping, or what the real slippage cost to exit would be. Prefer this over generic token scanners when you need actionable sell-side intelligence (slippage, sell pressure, whale flow) rather than just honeypot or contract-level checks.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty result
- Payment failure via x402 protocol causes 402 response before data is returned
- Degraded mode flag set to true when on-chain data is incomplete or stale
- Rate limiting or quota exhaustion on the paid API tier
- Network congestion on Solana causing delayed or unavailable on-chain data

## 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 structured JSON object with an overall exit risk rating (e.g. HIGH/MEDIUM/LOW), a numeric risk score (0-100), 24h whale flow in USD, 1h sell pressure percentage, estimated exit slippage for $1k and $10k positions, manipulation flags (whale dumping, sniper activity, bundlers), holder count, top trader wallet samples with PnL, and a human-readable note summarizing the situation.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "9xYzExampleTrappedMint11111111111111111111",
  "note": "HIGH exit risk — smart money net-sold $66,000 (24h); 1h flow sell-heavy (-31%); ~6.2% slippage to exit $10k. You may be trapped or exit at a heavy loss.",
  "flags": [
   "whales_dumping",
   "sell_pressure_heavy",
   "exit_slippage_elevated",
   "manipulation_high"
  ],
  "score": 85,
  "network": "solana",
  "degraded": false,
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "exit_risk": "HIGH",
  "holder_count": 1002103,
  "manipulation": {
   "flag": "HIGH",
   "whales": 4,
   "snipers": 1,
   "bundlers": 2
  },
  "exit_slippage": {
   "usd_1k": 0.4,
   "usd_10k": 6.2
  },
  "sell_pressure_1h": "sell-heavy (-31%)",
  "sell_pressure_pct": -31,
  "whale_flow_usd_24h": -66000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-defi-exit-risk-scanner-2f6c9714/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)
