# Solenrich Smart Money Flow

> Solenrich Smart Money Flow is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Scores Solana wallets via copy-trade metrics (win rate, Sharpe ratio, consistency), filters to qualifying smart-money wallets, and surfaces tokens they are accumulating along with wallet cluster analysis.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/smart-money-flow/invoke
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-smart-money-flow-4a275aba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y2e_QH1t0KaQr-W0WH3iX

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 solenrich-smart-money-flow-4a275aba -d '<json body>'
```

Example prompt: Score these Solana wallets — [wallet1, wallet2, wallet3] — using a 30-day lookback, filter to those with at least 60% win rate, show me the top 10 tokens they're accumulating, and include wallet cluster analysis.

## When to prefer this

Use this endpoint when you want to identify smart money on Solana based on proven copy-trade performance metrics — win rate, Sharpe ratio, and consistency — rather than raw volume or social signals. Prefer it over generic on-chain scanners when you need both wallet scoring and token accumulation intelligence in a single call, or when you want wallet cluster analysis to find correlated smart-money groups.

## Known failure modes

- Invalid or malformed Solana wallet addresses (wrong length or format) cause validation errors
- No wallets pass the win rate filter if threshold is set too high, returning empty results
- Lookback window too short may yield insufficient trade history for reliable scoring
- include_graph=true significantly increases response latency for large wallet sets
- Curated default wallet list may lag market participants if not recently updated

## How this service works

Scores seed wallets via copy-trade metrics (win rate, Sharpe, consistency), filters to qualifying winners, then surfaces tokens they're accumulating and wallet clusters. Pass your own `wallets` array or use the curated default seed list.

## Output

Returns a list of wallets that qualify as smart money (filtered by win rate and Sharpe), the tokens they are accumulating ranked by conviction, and optionally a wallet cluster graph showing which winners are moving together — formatted as JSON, an LLM-friendly summary, or both.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "wallets": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 44,
    "minLength": 32
   },
   "maxItems": 30,
   "description": "Optional Solana wallet addresses to score (uses curated default if omitted)"
  },
  "min_win_rate": {
   "type": "number",
   "default": 0.55,
   "maximum": 1,
   "minimum": 0,
   "description": "Minimum win rate to qualify as smart money (0-1)"
  },
  "top_n_tokens": {
   "type": "number",
   "default": 10,
   "maximum": 20,
   "minimum": 1,
   "description": "Max tokens to surface as accumulated"
  },
  "include_graph": {
   "type": "boolean",
   "default": true,
   "description": "Include cluster analysis via wallet-graph (adds latency)"
  },
  "lookback_days": {
   "type": "number",
   "default": 14,
   "maximum": 90,
   "minimum": 1,
   "description": "Copy-trade lookback window in days"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "output": {
   "briefing": "string (llm format) or object (json format)"
  },
  "run_id": "uuid",
  "status": "succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-smart-money-flow-4a275aba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solenrich.com](https://www.zero.xyz/host/api.solenrich.com/llms.txt)
