# Financial Data x402 – Wallet Transaction History

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

Returns the full on-chain transaction history for a given blockchain wallet address, including amounts, counterparties, gas, and timestamps.

## Facts

- Endpoint: GET https://x402financialdata.com/wallet-transactions/%7Baddress%7D
- Price: $0.01/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-transaction-history-d3ed68e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K_xeFoaBZbh_-KME-VNpx

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-transaction-history-d3ed68e9
```

Example prompt: Pull the full transaction history for Ethereum wallet 0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae so I can see every transfer it has made — who it sent to, how much ETH, and when.

## When to prefer this

Choose this endpoint when you need on-chain transaction history for a specific wallet address without signing up for an API key or subscription — ideal for autonomous AI agents that can pay per call in USDC via the x402 protocol. Prefer it over Etherscan API or Alchemy when you want frictionless micropayment access with no account management.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Address with no transaction history returns count:0 and an empty transactions array
- Network timeout or upstream node unavailability causes a 5xx error
- Payment failure via x402 (insufficient USDC balance) results in a 402 Payment Required response before data is returned
- Unsupported chain identifier may yield no results or an error

## 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 queried wallet address, the blockchain identifier (e.g. 'eth'), a count of returned transactions, and an array of transaction objects each including: to/from addresses, transaction hash, ETH value (decimal and wei), method called, gas used, gas price in wei, block number, timestamp (ISO 8601), and an is_error boolean flag.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "eth",
  "count": 1,
  "address": "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae",
  "transactions": [
   {
    "to": "0x28c6c06298d514db089934071355e5743bf21d60",
    "from": "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae",
    "hash": "0x8a1a9989bda84f80143181a68bc137ecefa64d0d4ebde45dd94fc0cf49e70cb",
    "value": 0.05,
    "method": null,
    "gas_used": 21000,
    "is_error": false,
    "timestamp": "2026-07-30T03:43:30+00:00",
    "value_wei": "50000000000000000",
    "block_number": 21500123,
    "gas_price_wei": "12000000000"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-wallet-transaction-history-d3ed68e9/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)
