# Solenrich Full Wallet Enrichment

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

Enriches a Solana wallet address with DeFi positions, connected wallets, enhanced transaction history, and automated-activity behavioral signals at full depth.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/enrich-wallet-full/invoke
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-full-wallet-enrichment-03c78832
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vWQ5xQuIdtNItS2SGiWWM

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-full-wallet-enrichment-03c78832 -d '<json body>'
```

Example prompt: Can you give me a full enriched profile of this Solana wallet — 7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs — including DeFi positions, connected wallets, transaction history, and whether it looks like a bot? Return it in JSON format.

## When to prefer this

Choose this endpoint when you need a comprehensive, deep wallet profile that includes DeFi positions, behavioral classification, and connected wallet graph — not just a basic balance or token list. It is the most complete Solana wallet enrichment available on this platform, in contrast to lighter sibling endpoints that cover only snapshots or specific protocol data.

## Known failure modes

- Invalid or malformed Solana address returns a validation error
- Unknown or empty wallet with no on-chain history may return sparse results
- Rate limiting or payment failure via x402 protocol blocks the call
- Depth or format enum value not in allowed set causes a 400 error
- Timeout if the wallet has an exceptionally large transaction history

## How this service works

Adds DeFi positions, connected wallets, enhanced transaction history, automated-activity behavioral signals, and a wider NFT collection breakdown to the light profile.

## Output

A comprehensive wallet profile including DeFi protocol positions, linked wallet addresses, enhanced transaction history with categorization, and behavioral signals indicating whether the wallet exhibits automated or bot-like activity patterns. Returned in JSON or LLM-friendly format depending on the requested output format.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "light",
    "full"
   ],
   "type": "string",
   "default": "full"
  },
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana base58 wallet address"
  }
 }
}
```

## 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-full-wallet-enrichment-03c78832/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)
