# Wallet Overview – On-Chain Portfolio Snapshot

> Wallet Overview – On-Chain Portfolio Snapshot is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a comprehensive on-chain overview for a given wallet address, including native token balance, wallet age, transaction count, and first/last transaction metadata.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/wallet-overview/%7Baddress%7D
- 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/wallet-overview-on-chain-portfolio-snapshot-073d90b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uj2XyRal5-HfcxFceCFlj

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 wallet-overview-on-chain-portfolio-snapshot-073d90b8
```

Example prompt: Can you pull the on-chain overview for the wallet address 0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae on Ethereum — I want to know its ETH balance, how old the wallet is, and when the first and last transactions happened?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call on-chain wallet summary without an API key or subscription — ideal for one-off due diligence, agentic workflows that check wallet provenance, or any scenario where you need balance + age + transaction history in a single call for an EVM address. Prefer over free RPC calls when you need enriched metadata (age, first tx) without assembling it yourself.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Address not found on the specified chain returns null fields
- x402 payment failure (insufficient USDC balance or unsupported chain) blocks the request
- Rate limiting or Vercel cold-start may cause occasional timeouts
- Very new wallets with no transactions may return null for first/last transaction fields

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing: the as_of timestamp, the chain identifier (e.g. 'eth'), the queried address, a boolean indicating if it's a contract, the native token balance (float and wei string), the wallet's age in days, the date and hash of the first transaction, the date and hash of the last transaction, and the total transaction count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-01T22:25:12.134747+00:00",
  "chain": "eth",
  "address": "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae",
  "is_contract": true,
  "native_balance": {
   "balance": 7774.49179078,
   "balance_wei": "7774491790776062094342",
   "native_symbol": "ETH"
  },
  "wallet_age_days": 4011,
  "last_transaction": {
   "date": "2026-07-27T14:14:47+00:00",
   "hash": "0x4dfa7b1be6578326be24ad2d330e7baf23230e18c2d2c67d8f41798e0e764b0b"
  },
  "first_transaction": {
   "date": "2015-08-08T15:44:00+00:00",
   "hash": "0x9c81f44c29ff0226f835cd0a8a2f2a7eca6db52a711f8211b566fd15d3e0e8d4"
  },
  "transaction_count": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-overview-on-chain-portfolio-snapshot-073d90b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
