# SolProbe Trade Suggest — Solana Token Trade Recommendation

> SolProbe Trade Suggest — Solana Token Trade Recommendation is a paid API for AI agents from api.solprobe.xyz, paid per call via x402, $0.6/call, status down (last checked 2026-09-16).

Analyzes Solana token candidates and returns an AI-driven trade suggestion with conviction score, trade plan, and risk assessment

## Facts

- Endpoint: POST https://api.solprobe.xyz/trade/suggest
- Price: $0.6/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-trade-suggest-solana-token-trade-recommendation-95cc4ef5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bHluOnxHNXaYoOF5AliEq

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 solprobe-trade-suggest-solana-token-trade-recommendation-95cc4ef5 -d '<json body>'
```

Example prompt: Scan both the signal and launch radars for Solana tokens with a market cap between $500K and $10M and suggest me a trade I should consider — use a balanced risk appetite and size the position for a $50 probe.

## When to prefer this

Use this endpoint when an AI agent needs a fully-reasoned, ready-to-act Solana token trade suggestion rather than raw on-chain data. It is ideal when the agent lacks the ability to run its own scoring model and needs a conviction score, trade plan, and risk factors in one call. Prefer it over raw DEX feeds or token screeners when you want structured trade intelligence with exit-cost context for a specific probe size.

## Known failure modes

- No candidates found matching market cap filters — returns empty shortlist or error
- Payment not processed (x402 402 response) — call blocked until payment is made
- Data quality degraded — partial data returned with data_quality field set to PARTIAL or LOW
- Invalid enum value for source or risk_appetite — 422 validation error
- size_usdc out of range (below 0.01 or above 100000) — schema validation failure

## How this service works

AI-callable Solana token intelligence. Pay per call via x402 USDC on Base or Solana, or Virtuals ACP escrow. No accounts, no keys, no subscription.

## Output

Returns a JSON object with the selected token's symbol and mint address, an action recommendation (e.g. CONSIDER), a conviction score (0-1), a full trade plan including slippage BPS, estimated exit cost, stop-loss hint, and max price impact, a list of cited factors with impact scores and interpretations, any hard blockers, a suggested position size label (MODERATE/SMALL/LARGE), and data quality rating.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mc_max": {
   "type": "number",
   "minimum": 0,
   "description": "Max market cap (USD) filter on the candidate feed."
  },
  "mc_min": {
   "type": "number",
   "minimum": 0,
   "description": "Min market cap (USD) filter on the candidate feed."
  },
  "source": {
   "enum": [
    "signal",
    "launch",
    "both"
   ],
   "type": "string",
   "default": "both",
   "description": "Candidate source: convergence-signal radar, pre-graduation launch radar, or both."
  },
  "size_usdc": {
   "type": "number",
   "default": 10,
   "maximum": 100000,
   "minimum": 0.01,
   "description": "Probe size (USD) for exit-cost + position-size context."
  },
  "risk_appetite": {
   "enum": [
    "conservative",
    "balanced",
    "aggressive"
   ],
   "type": "string",
   "default": "balanced",
   "description": "Tunes the action threshold and trade-plan max price impact."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "discovery",
  "symbol": "EXAMPLE",
  "selection": {
   "candidate": "<base58 mint>",
   "shortlist": [],
   "why_selected": [
    "top of 6 candidate(s)"
   ]
  },
  "suggestion": {
   "action": "CONSIDER",
   "conviction": 0.62,
   "trade_plan": {
    "slippage_bps": 100,
    "est_exit_cost_pct": 0.65,
    "stop_loss_hint_pct": 15,
    "max_price_impact_pct": 3,
    "est_round_trip_cost_pct": 1.3
   },
   "cited_factors": [
    {
     "name": "structural_risk_grade",
     "value": "B",
     "impact": 22,
     "interpretation": "deep-dive structural grade B"
    }
   ],
   "hard_blockers": [],
   "suggested_size": "MODERATE"
  },
  "data_quality": "FULL",
  "token_address": "<base58 mint>",
  "schema_version": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-trade-suggest-solana-token-trade-recommendation-95cc4ef5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solprobe.xyz](https://www.zero.xyz/host/api.solprobe.xyz/llms.txt)
