# SolProbe Smart Money Token Scanner

> SolProbe Smart Money Token Scanner is a paid API for AI agents from api.solprobe.xyz, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Returns a ranked list of Solana tokens currently attracting smart money activity, filtered by trader style and time interval

## Facts

- Endpoint: POST https://api.solprobe.xyz/scan/smart-money
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-smart-money-token-scanner-65be33de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M2vX4N24n_ja94AoEQnbo

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-smart-money-token-scanner-65be33de -d '<json body>'
```

Example prompt: Show me the top 15 Solana tokens that smart money trencher traders have been flowing into over the past 7 days, including their risk grades and liquidity.

## When to prefer this

Use this endpoint when you need a pre-ranked, curated list of Solana tokens currently attracting smart money, especially when you want to filter by trader archetype (risk-averse, balanced, trenchers) or time horizon. Prefer this over raw on-chain queries when you want structured risk grading and liquidity signals in a single call without building your own aggregation pipeline.

## Known failure modes

- Invalid trader_style enum value returns 422 validation error
- limit outside 1–25 range returns 422 validation error
- Invalid interval value (not 1d/7d/30d) returns 422
- Payment not included or insufficient USDC triggers 402 Payment Required
- Data quality may be PARTIAL if Birdeye upstream data is incomplete
- Low liquidity or newly listed tokens may have reduced data_quality

## 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 ranked list of up to 25 Solana tokens with smart money activity, each including token symbol, mint address, current USD price, net flow in USD, liquidity in USD, number of smart traders involved, trader style, structural risk grade (A–F), and data quality indicators — all sourced from Birdeye smart money data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 25,
   "minimum": 1
  },
  "interval": {
   "enum": [
    "1d",
    "7d",
    "30d"
   ],
   "type": "string",
   "default": "7d"
  },
  "trader_style": {
   "enum": [
    "all",
    "risk_averse",
    "risk_balancers",
    "trenchers"
   ],
   "type": "string",
   "default": "all"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "limit": 10,
  "source": "birdeye_smart_money",
  "tokens": [
   {
    "symbol": "EXAMPLE",
    "address": "<base58 mint>",
    "price_usd": 1.23,
    "quickscan": {
     "data_quality": "FULL",
     "schema_version": "2.0",
     "structural_risk_grade": "B"
    },
    "net_flow_usd": 12500,
    "trader_style": "trenchers",
    "liquidity_usd": 1500000,
    "smart_traders_no": 87
   }
  ],
  "interval": "7d",
  "data_quality": "FULL",
  "trader_style": "all",
  "schema_version": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-smart-money-token-scanner-65be33de/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)
