---
name: api.solprobe.xyz
description: api.solprobe.xyz provides a single endpoint that evaluates whether a Solana token can be sold at a given USDC size. It returns expected USDC output, price impact, available route count, the top DEX, and on-chain blockers such as freeze authority, non-transferable flags, and transfer fees.
host: api.solprobe.xyz
---

# api.solprobe.xyz

SolProbe is a Solana-specific token exit screening service. It targets agents and traders who need to verify sell-side feasibility before committing to a swap, surfacing both liquidity-based metrics (via Jupiter routing) and on-chain token-level risk flags in a single call. It does not cover buy-side quoting, portfolio management, or any chain other than Solana.

## When to use this host

Use this host when an agent needs to screen a Solana token for honeypot or exit-trap risk before executing a sell swap — specifically to confirm the token is sellable, estimate USDC proceeds, and detect on-chain blockers like freeze authority or transfer fees. Do not use it for buy-side quotes (use Jupiter aggregator APIs directly for that), cross-chain token checks (use chain-specific tools for Ethereum, BSC, etc.), or general token metadata and price feeds (use Birdeye, Helius, or similar Solana data providers). This host is narrowly scoped to one operation; if the agent's task requires anything beyond sell-side exit validation on Solana, route elsewhere.

## Capabilities

### Token Exit Screening

Evaluates sell-side feasibility for a Solana token at a specified trade size, returning expected proceeds, price impact, routing depth, and hard on-chain blockers that would prevent a successful exit.

- **`check-solana-token-exit`** — Checks whether a Solana token is sellable right now and returns expected USDC output, price impact, route count, top DEX, and hard blockers (freeze authority, non-transferable, transfer fee) for a given trade size.

## Skill reference

### `check-solana-token-exit`

**SolProbe Exit Check** — Checks whether a Solana token is sellable right now and returns expected USDC output, price impact, route count, top DEX, and hard blockers (freeze authority, non-transferable, transfer fee) for a given trade size.

*Use when:* Use when an agent needs to screen a Solana token for honeypot or trap-exit risk before executing a swap — specifically to confirm sellability, estimate exit proceeds, and detect on-chain blockers in under 5 seconds.

*Not for:* Do not use for buying-side quotes or cross-chain token checks; this endpoint only evaluates sell-side exit feasibility on Solana via Jupiter routing.

**Inputs:**

- `token_address` (string, required) — Solana token mint address to check for exit feasibility. Must be 32–44 characters.
- `size_usdc` (number) — Trade size in USDC to simulate the exit round-trip. Defaults to 10 if omitted.

**Returns:** Returns sellable=true, expected_output_usdc=9.967094, price_impact_pct=0.16, route_count=2, top_route_dex=Bonkswap, a blockers object with all flags false, and a recommendation of action=OK.

**Example:** `{"token_address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", "size_usdc": 10}`

---
