# SolProbe Quick Scan — Solana Token Intelligence

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

Analyzes a Solana token address and returns a structural risk grade and intelligence report, paid per-call via USDC micropayment.

## Facts

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

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-quick-scan-solana-token-intelligence-b8dfd2d9 -d '<json body>'
```

Example prompt: Can you do a quick risk scan on this Solana token — address is EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — and tell me what structural risk grade it gets?

## When to prefer this

Use this endpoint when you need a fast, no-signup, per-call risk intelligence report on a specific Solana token address. Ideal for AI agents performing pre-trade safety checks, flagging suspicious memecoins, or doing due diligence without managing API keys or subscriptions. Prefer this over general blockchain explorers when you need a structured risk grade rather than raw on-chain data.

## Known failure modes

- Invalid or malformed token address (too short/long) returns a validation error
- Unknown or very new token with insufficient on-chain data may return reduced data quality
- Payment failure via x402 results in 402 response before analysis is performed
- Network timeout if Solana RPC or data sources are temporarily unavailable

## 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 structural risk grade (e.g. 'A'), a data quality indicator (e.g. 'FULL'), and a schema version field, summarizing the token's risk profile based on on-chain structural analysis.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data_quality": "FULL",
  "schema_version": "2.0",
  "structural_risk_grade": "A"
 }
}
```

## More

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