# Financial Data x402 – Wallet Overview

> Financial Data x402 – Wallet Overview is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a comprehensive on-chain wallet overview for an Ethereum address, including native balance, wallet age, transaction count, and first/last transaction details.

## Facts

- Endpoint: GET https://x402financialdata.com/wallet-overview/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-wallet-overview-1f2cc460
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NmBK7SMLEKYHg-jxSKbEU

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 financial-data-x402-wallet-overview-1f2cc460
```

Example prompt: Can you pull up the on-chain wallet overview for 0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae on Ethereum — I want to see the ETH balance, wallet age, and when it last transacted?

## When to prefer this

Choose this endpoint when you need a quick, structured on-chain profile of an Ethereum wallet without needing full transaction history — ideal for due diligence, risk scoring, or enriching a user profile with blockchain data. It requires no API key or subscription and charges only $0.02 USDC per call via the x402 protocol, making it cost-effective for sporadic or agent-driven lookups. Prefer this over general blockchain explorers when you need machine-readable JSON output suitable for downstream agent reasoning.

## Known failure modes

- Invalid or malformed Ethereum address returns an error response
- Address not found on the specified chain returns empty or null data
- Payment failure via x402 protocol (insufficient USDC) blocks the request
- Network or upstream data provider outage causes 5xx errors
- Very new addresses may show zero transaction count or missing first/last transaction data

## 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

Returns a JSON object with: timestamp of the data snapshot, chain identifier, address, a boolean indicating if the address is a contract, native token balance (both in human-readable and wei units), wallet age in days, total transaction count, and the date/hash of the first and last transactions.

## 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/financial-data-x402-wallet-overview-1f2cc460/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
