# SolProbe Wallet Intelligence

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

Analyzes a Solana wallet address to produce risk classification, trading behavior profile, copy-trading worthiness, and funding source risk assessment

## Facts

- Endpoint: POST https://api.solprobe.xyz/wallet/intel
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-wallet-intelligence-e6c90237
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ayTTvDeDhaKliL0JVzsNt

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-wallet-intelligence-e6c90237 -d '<json body>'
```

Example prompt: Can you analyze this Solana wallet and tell me if it's worth copy-trading — is it low or high risk, what trading style does it use, and what's its win rate? The wallet is 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU.

## When to prefer this

Use this endpoint when you need detailed behavioral profiling and risk classification of a specific Solana wallet — especially for copy-trading decisions, due diligence on counterparties, or flagging suspicious funding sources. Prefer this over generic blockchain explorers when you need structured, AI-ready intelligence rather than raw transaction data.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Wallet with insufficient on-chain history may return data_quality: PARTIAL with limited fields
- Payment not included or insufficient USDC results in 402 Payment Required
- Unknown or unsupported wallet format returns validation error
- Rate limiting if payment not processed correctly via x402

## 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 containing: wallet_activity_type (e.g. SWING_TRADER), classification (e.g. LOW_RISK), behavior style (e.g. MOMENTUM), copy_trading worthiness score and sample size, win rate percentage, funding source type and risk level, schema version, and data quality indicator (PARTIAL or FULL).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "behavior": {
   "style": "MOMENTUM"
  },
  "copy_trading": {
   "worthiness": "LOW",
   "sample_size": 202
  },
  "data_quality": "PARTIAL",
  "win_rate_pct": 48.6,
  "classification": "LOW_RISK",
  "funding_source": {
   "risk": "LOW",
   "funder_type": "CEX"
  },
  "schema_version": "2.0",
  "wallet_activity_type": "SWING_TRADER"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-wallet-intelligence-e6c90237/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)
