# SolEnrich Copy-Trade Signals — Wallet Trading Performance Analytics

> SolEnrich Copy-Trade Signals — Wallet Trading Performance Analytics is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Computes trading performance metrics (PnL, win rate, Sharpe/Sortino ratios, max drawdown, profit factor) for a given Solana wallet over a configurable lookback period.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/copy-trade-signals/invoke
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-copy-trade-signals-wallet-trading-performance-analytics-e8aee6b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GM5IAAuRZUfjLUvEgVQE0

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-copy-trade-signals-wallet-trading-performance-analytics-e8aee6b0 -d '<json body>'
```

Example prompt: Pull the trading performance stats for Solana wallet 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM over the last 30 days — I want PnL, win rate, Sharpe ratio, max drawdown, and profit factor so I can decide if it's worth copy-trading.

## When to prefer this

Use this endpoint when an agent needs to quantitatively evaluate a specific Solana wallet's trading track record for copy-trading decisions, risk assessment, or due diligence — especially when risk-adjusted metrics like Sharpe/Sortino and drawdown are required alongside raw PnL.

## Known failure modes

- Invalid or malformed Solana base58 address returns a validation error
- Wallet with no trading history in the lookback window returns empty or zero metrics
- lookback_days exceeding 90 returns a validation error
- Insufficient on-chain data for the period may result in partial or null ratio fields
- Network or upstream indexer failure may return a 5xx error

## How this service works

Trading PnL, win rate, Sharpe/Sortino ratios, max drawdown, profit factor.

## Output

Returns quantitative trading performance metrics for the specified Solana wallet including realized PnL, win rate percentage, Sharpe ratio, Sortino ratio, maximum drawdown, and profit factor — available in JSON, LLM-readable text, or both formats — covering the requested lookback window of up to 90 days.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana base58 wallet address"
  },
  "lookback_days": {
   "type": "number",
   "default": 30,
   "maximum": 90,
   "minimum": 1,
   "description": "Days of trading history"
  }
 }
}
```

## 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-copy-trade-signals-wallet-trading-performance-analytics-e8aee6b0/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)
