# Solenrich Wallet Graph

> Solenrich Wallet Graph 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).

Maps transaction connections for a Solana wallet address, detecting suspicious clusters and returning hop-depth-1 or hop-depth-2 counterparty networks.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/wallet-graph/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-wallet-graph-bb6a8030
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MXdemKA8PJ664HHon1k8V

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-wallet-graph-bb6a8030 -d '<json body>'
```

Example prompt: Map the transaction connection graph for Solana wallet 9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb1PkjNVpa — go 2 hops deep, only include connections with at least 2 interactions, and return both JSON and an LLM-readable summary.

## When to prefer this

Use this endpoint when you need to map the on-chain social graph and counterparty network of a specific Solana wallet, especially for due diligence, suspicious cluster detection, or tracing fund flows through 1 or 2 hops. Prefer this over general token analytics when the question is about wallet relationships rather than token performance.

## Known failure modes

- Invalid or malformed Solana base58 address returns a validation error
- Depth value outside 1-2 range is rejected
- Address with no qualifying connections at the minimum_interactions threshold returns an empty graph
- Unknown or inactive wallet may return sparse results
- Payment failure or missing x402 header returns 402 Payment Required

## How this service works

Transaction connection mapping, suspicious cluster detection, depth-1 or depth-2 hops.

## Output

Returns a transaction connection graph showing counterparty wallets within the requested hop depth, with suspicious cluster annotations and connection weights based on interaction counts, in the requested format (json, llm-friendly text, or both).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "type": "number",
   "default": 1,
   "maximum": 2,
   "minimum": 1,
   "description": "Hop depth (1 or 2)"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana base58 wallet address"
  },
  "min_interactions": {
   "type": "number",
   "default": 1,
   "minimum": 1,
   "description": "Minimum interactions to include connection"
  }
 }
}
```

## 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-wallet-graph-bb6a8030/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)
