# SolProbe Market Intel — Solana Token Intelligence

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

Returns AI-ready trading intelligence (bullish/bearish signal, buy/sell ratio, data quality) for a given Solana token address

## Facts

- Endpoint: POST https://api.solprobe.xyz/market/intel
- Price: $0.2/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-market-intel-solana-token-intelligence-7a851ff2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ph8SqlIVt-lS2FVEqQHiA

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-market-intel-solana-token-intelligence-7a851ff2 -d '<json body>'
```

Example prompt: What's the market intel on the Solana token at address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — is it bullish or bearish, and what's the buy/sell ratio?

## When to prefer this

Use this endpoint when you need a fast, structured, AI-readable trading signal for a specific Solana token without setting up accounts or subscriptions. It is ideal for autonomous agents that need to make buy/sell decisions or surface market sentiment on-demand, paying per call in USDC. Prefer this over general-purpose blockchain explorers or manual data aggregation when you need a pre-computed signal with a quality indicator rather than raw on-chain data.

## Known failure modes

- Invalid or malformed token address (outside 32–44 characters) returns an error
- Token address not found or not indexed returns empty or low data quality response
- Payment not completed via x402 USDC returns 402 Payment Required
- Network or upstream data source unavailability returns 5xx error
- Token with insufficient on-chain activity may return data_quality of PARTIAL or LOW

## 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

A JSON object containing a directional signal (e.g. BULLISH or BEARISH), a data quality indicator (e.g. FULL), a numeric buy/sell ratio (e.g. 1.85), and a schema version string. This gives an AI agent a concise, machine-readable read on current market dynamics for the queried Solana token.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signal": "BULLISH",
  "data_quality": "FULL",
  "buy_sell_ratio": 1.85,
  "schema_version": "2.0"
 }
}
```

## More

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