# Solenrich Compare Wallets

> Solenrich Compare Wallets is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Compares 2–3 Solana wallet addresses side-by-side across portfolio, activity, risk, and labels, returning rankings and a summary pick.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/compare-wallets/invoke
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-compare-wallets-531ca53a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O0LvW0F87R0OKPxTHfnEY

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-compare-wallets-531ca53a -d '<json body>'
```

Example prompt: Can you do a full comparison of these three Solana wallets — 7xKt...abc, 3mRd...xyz, and 9pLn...qrs — and tell me which one has the best risk profile and trading activity? Use full depth and give me the results in JSON.

## When to prefer this

Use this endpoint when you need a direct apples-to-apples comparison of 2–3 Solana wallets rather than a single-wallet profile. Ideal for copy-trade vetting, counterparty due diligence, or quickly identifying the strongest wallet in a set. Prefer over single-wallet enrichment endpoints when the user explicitly wants a ranked or comparative output.

## Known failure modes

- Fewer than 2 or more than 3 addresses provided — validation error
- Invalid or malformed Solana wallet address — lookup failure or partial results
- Wallet with no on-chain history — sparse data for that address
- Depth or format enum value not in allowed set — schema validation error
- Upstream on-chain data provider timeout — partial or degraded response

## How this service works

Compare 2-3 wallets: portfolio, activity, risk, labels. Rankings + summary picks.

## Output

A structured comparison object covering portfolio holdings, on-chain activity, risk scores, wallet labels (e.g. smart money, bot, degen), and a ranked summary identifying the strongest wallet across the analyzed addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "light",
    "full"
   ],
   "type": "string",
   "default": "light"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "addresses": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 3,
   "minItems": 2,
   "description": "Wallet addresses to compare"
  }
 }
}
```

## 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-compare-wallets-531ca53a/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)
