# Solana Token Sell-Feasibility Check (can-i-sell)

> Solana Token Sell-Feasibility Check (can-i-sell) is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Checks whether a given Solana token mint can actually be sold, simulating exit at a specified USD size and returning price impact, recovered percentage, and friction costs.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/can-i-sell/%7Bmint%7D
- Price: $0.003/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-sell-feasibility-check-can-i-sell-9d533bed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FrEYicQBybzlP9lKMRwBb

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-sell-feasibility-check-can-i-sell-9d533bed
```

Example prompt: Can I actually sell $5000 worth of the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — is it a honeypot, and how much of my money would I actually recover?

## When to prefer this

Use this endpoint when you need to verify whether a specific Solana token is sellable before buying, or to simulate the cost of exiting an existing position. Prefer this over generic token info APIs when you specifically need exit simulation with real slippage, honeypot detection, and recovered-percentage estimates for a Solana mint.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty result
- Insufficient on-chain liquidity data may cause simulation failure
- Payment not received (402) blocks the response until x402 payment is made
- Token with zero liquidity may return canExit: false with no price impact data
- Network congestion or RPC issues may delay or fail the simulation

## 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 with: canExit (bool), canBuy (bool), verdict (human-readable summary string), sellPriceImpactPct, recoveredPct, effectiveFrictionPct, usdcInSimulated, usdcOutSimulated, sizeUsd, network, checkedAt timestamp, and any notes. Tells the agent definitively whether the token can be exited and at what cost.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
  "notes": [],
  "canBuy": true,
  "canExit": true,
  "network": "solana",
  "sizeUsd": 5000,
  "verdict": "OK — you can exit $5000, recovering ~99.1% (impact ~0.31%).",
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "recoveredPct": 99.1,
  "usdcInSimulated": 5000,
  "usdcOutSimulated": 4955.2,
  "sellPriceImpactPct": 0.31,
  "effectiveFrictionPct": 0.59
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-sell-feasibility-check-can-i-sell-9d533bed/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)
