---
name: walletlens.wallyweb.com
description: WalletLens provides a single-endpoint EVM wallet analysis service that returns a bundled report covering token holdings, USD valuations, transaction history, counterparty data, decoded transfers, and activity summaries. It supports Base and Ethereum chains and is designed for one-shot, on-demand wallet snapshots rather than continuous monitoring.
host: walletlens.wallyweb.com
---

# walletlens.wallyweb.com

WalletLens is a read-only EVM wallet intelligence host serving agents that need a comprehensive view of a wallet's financial state and activity without assembling multiple data sources. It covers portfolio balances, transaction history, and behavioral patterns in a single request, scoped to Base and Ethereum. It does not offer trading, real-time streaming, or cross-chain support beyond those two networks.

## When to use this host

Use this host when an agent needs a full, self-contained EVM wallet report for Base or Ethereum — covering balances, history, and activity patterns — in a single call. Do not use it for real-time or streaming balance updates, live price feeds, or non-EVM chains (e.g., Solana, Bitcoin). If the agent only needs current token prices without wallet context, a dedicated price feed host is more appropriate. If the agent needs to execute transactions or monitor wallets continuously, this host is not suitable.

## Capabilities

### Wallet Portfolio & Activity Reporting

Fetches a complete snapshot of an EVM wallet including token holdings with USD values, transaction history, decoded transfers, counterparties, and an activity summary across one or both supported chains.

- **`fetch-wallet-report`** — Returns a bundled EVM wallet report including portfolio balances, top holdings, transaction history, counterparties, decoded transfers, and activity summary for one or more chains.

## Skill reference

### `fetch-wallet-report`

**WalletLens Wallet Report** — Returns a bundled EVM wallet report including portfolio balances, top holdings, transaction history, counterparties, decoded transfers, and activity summary for one or more chains.

*Use when:* Use when an agent needs a comprehensive snapshot of an EVM wallet's token holdings, USD values, transaction history, and activity patterns across Base and/or Ethereum in a single request.

*Not for:* Do not use for real-time price feeds or streaming balance updates; this is a single-shot report. Not suitable for non-EVM chains.

**Inputs:**

- `address` (string, required) — EVM wallet address to report on. Must match pattern ^0x[a-fA-F0-9]{40}$.
- `chains` (string) — Comma-separated chain slugs to include. Defaults to 'base,ethereum'.
- `limit` (integer) — Maximum number of transactions to return. Integer between 1 and 100, defaults to 50.
- `days` (integer) — Lookback window in days for transaction history. Integer between 1 and 365, defaults to 30.
- `category` (string) — Transaction category filter. One of: all, external, internal, erc20, erc721, erc1155. Defaults to 'all'.

**Returns:** Returns a JSON object with address, timestamp, chains, request echo, a summary of holdings and transaction counts with warnings, and a full portfolio object containing up to 90 tokens with balances and USD values.

**Example:** `GET https://walletlens.wallyweb.com/wallet-report?address=0x402Feee072D655B85e08f1751AF9ddbCd249521f&chains=base,ethereum&limit=50&days=30&category=all`

---
