# On-Chain Wallet Overview

> On-Chain Wallet Overview is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a base wallet overview for an Ethereum/EVM address including native token balance, USD value, transaction count, and token-transfer count

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/onchain/wallet
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/on-chain-wallet-overview-7aed2f30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oWCq4taFtbvMv2kqZLw9t

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 on-chain-wallet-overview-7aed2f30
```

Example prompt: Can you pull up a wallet overview for 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I want to see the native ETH balance, its USD value, and how many transactions and token transfers it's made?

## When to prefer this

Use this endpoint when you need a quick, high-level on-chain wallet summary — native balance, USD value, tx count, and token-transfer count — for any EVM-compatible address. It is ideal for lightweight due diligence, portfolio snapshots, or activity checks without needing a full blockchain explorer. Prefer this over heavier analytics APIs when you only need aggregate wallet stats rather than full transaction history or token holdings breakdown.

## Known failure modes

- Missing or malformed address parameter returns an error
- Non-checksummed or invalid 0x address may return an error or empty data
- Address with zero activity may return zeroed fields
- Rate limiting or upstream RPC node failures may cause timeouts
- Network unavailability of the Tailscale-hosted endpoint

## How this service works

Base wallet overview: native balance, USD value, tx and token-transfer counts. ?address=0x...

## Output

Returns a JSON object containing the wallet's native token balance (e.g. ETH), its equivalent USD value, total transaction count, and total token-transfer count for the given EVM address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/on-chain-wallet-overview-7aed2f30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
