# SolProbe Deep Scan — Solana Token Intelligence

> SolProbe Deep Scan — Solana Token Intelligence is a paid API for AI agents from api.solprobe.xyz, paid per call via x402, $0.5/call, status down (last checked 2026-09-15).

Performs a deep risk analysis of a Solana token by address, returning a risk grade, data quality rating, and an action recommendation.

## Facts

- Endpoint: POST https://api.solprobe.xyz/scan/deep
- Price: $0.5/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-deep-scan-solana-token-intelligence-5b4fb5dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PWya1lYgUaahNtd8r_6Le

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-deep-scan-solana-token-intelligence-5b4fb5dc -d '<json body>'
```

Example prompt: Can you do a deep scan on this Solana token — EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — and tell me its risk grade and whether I should buy, watch, or avoid it?

## When to prefer this

Use this endpoint when you need a structured, AI-friendly risk assessment of a specific Solana token address with no API keys or subscriptions required. Prefer this over generic block explorer lookups when you need a normalized risk grade and clear action recommendation suitable for automated agent decision-making.

## Known failure modes

- Invalid or malformed token address returns a validation error
- Token address not found on Solana returns empty or low-quality data
- Payment failure via x402 results in 402 Payment Required response
- Network timeout if Solana RPC is slow or unavailable
- Token with insufficient on-chain history may return data_quality below FULL

## 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 a letter risk grade (e.g. 'B'), a data quality indicator ('FULL'), an action recommendation object with an 'action' field (e.g. 'WATCH', 'BUY', 'AVOID'), and a schema version string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token_address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk_grade": "B",
  "data_quality": "FULL",
  "recommendation": {
   "action": "WATCH"
  },
  "schema_version": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-deep-scan-solana-token-intelligence-5b4fb5dc/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)
