# Web3 Wallet Snapshot

> Web3 Wallet Snapshot is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Returns a comprehensive snapshot of an EVM wallet including balance, recent transactions, age, ENS identity, and current market prices.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/web3-wallet-snapshot
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-348c3d52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XoTSUAlhQClO7dqJtzXRL

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 api-strale-io-348c3d52 -d '<json body>'
```

Example prompt: Give me a full snapshot of the Ethereum wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on chain 1 — I want to see its balance, recent transactions, age, ENS name, and current market prices before I interact with it.

## When to prefer this

Use this endpoint when you need a quick, all-in-one profile of an EVM wallet before taking action — especially when you need balance, transaction history, wallet age, ENS identity, and token prices in a single call rather than querying multiple separate blockchain APIs.

## Known failure modes

- Invalid wallet address format returns a 400 error
- Unsupported chain_id returns an error or empty response
- Wallet with no on-chain history may return minimal data
- ENS name not found if wallet has no reverse record
- Rate limiting or payment failure returns 402 or 429

## How this service works

Understand any wallet before acting. Balance, recent transactions, age, ENS identity, and current market prices — the quickest way to size up a wallet.

## Output

Returns a structured profile of the wallet including current token balances with live market prices, a list of recent transactions, the wallet's on-chain age (first activity date), and the resolved ENS identity (if any), giving a full picture of the wallet's history and holdings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain_id": {
   "type": "string",
   "description": "Chain ID, default 1"
  },
  "wallet_address": {
   "type": "string",
   "description": "Wallet address (0x...)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-348c3d52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
