# WalletLens Wallet Report API

> WalletLens Wallet Report API is a paid API for AI agents from walletlens.wallyweb.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a comprehensive EVM wallet report including portfolio balances, transaction history, Base USDC activity, top holdings, counterparties, decoded transfers, and a wallet analysis summary in a single paid call.

## Facts

- Endpoint: GET https://walletlens.wallyweb.com/wallet-report
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/walletlens-wallyweb-com-c09a1fbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oJUcTBVQnknftcA7Qd5uK

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 walletlens-wallyweb-com-c09a1fbf
```

Example prompt: Pull a full WalletLens report for the wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I want to see the portfolio balances, TxLens transaction history, Base USDC activity, top holdings, and who they've been sending funds to.

## When to prefer this

Use this endpoint when you need a single comprehensive snapshot of an EVM wallet — combining portfolio, history, and analysis — rather than calling separate balance and transaction endpoints. Ideal when you want decoded, categorized, and summarized wallet intelligence in one x402 paid call rather than assembling data from multiple sources.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Payment failure via x402 protocol returns 402 status
- Unsupported chain or wallet with no activity may return empty datasets
- Rate limiting or quota exceeded returns 429
- Network timeout for wallets with very large transaction histories

## How this service works

WalletLens wallet report API for agents: one paid x402 call returns EVM portfolio balances plus TxLens transaction history, Base USDC activity, top holdings, counterparties, decoded transfers, and wallet analysis summary.

## Output

A structured JSON report containing: EVM portfolio balances, enriched multi-chain transaction history (TxLens), Base USDC activity, top token holdings by value, counterparty addresses with interaction counts, decoded token/NFT transfers, and a natural-language wallet analysis summary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "days": {
   "type": "integer",
   "default": 30,
   "maximum": 365,
   "minimum": 1
  },
  "limit": {
   "type": "integer",
   "default": 50,
   "maximum": 100,
   "minimum": 1
  },
  "chains": {
   "type": "string",
   "default": "base,ethereum",
   "examples": [
    "base",
    "base,ethereum"
   ],
   "description": "Comma-separated supported chain slugs."
  },
  "address": {
   "type": "string",
   "pattern": "^0x[a-fA-F0-9]{40}$",
   "examples": [
    "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea"
   ],
   "description": "EVM wallet address."
  },
  "category": {
   "enum": [
    "all",
    "external",
    "internal",
    "erc20",
    "erc721",
    "erc1155"
   ],
   "type": "string",
   "default": "all"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/walletlens-wallyweb-com-c09a1fbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from walletlens.wallyweb.com](https://www.zero.xyz/host/walletlens.wallyweb.com/llms.txt)
