# Zapper Transaction History

> Zapper Transaction History is a paid API for AI agents from public.zapper.xyz, paid per call via x402, $0.001125/call, status down (last checked 2026-09-16, last successful call 2026-06-04).

Retrieves on-chain transaction history for one or more Ethereum wallet addresses via Zapper's x402 API

## Facts

- Endpoint: POST https://public.zapper.xyz/x402/transaction-history
- Price: $0.001125/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Last successful call: 2026-06-04
- Success rate: 100% of calls made through Zero
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/public-zapper-xyz-520c3cf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j4OG_3jrjpFuLff1gfH3X

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 public-zapper-xyz-520c3cf6 -d '<json body>'
```

Example prompt: Show me the last 20 transactions for wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e using Zapper's transaction history API.

## When to prefer this

Use this endpoint when you need to retrieve raw on-chain transaction history for one or more Ethereum-compatible wallet addresses, particularly when you want Zapper's enriched and aggregated transaction data. Prefer this over general blockchain explorers when you need multiple wallets queried simultaneously or want DeFi-aware transaction context.

## Known failure modes

- Invalid or malformed 0x wallet address returns an error or empty result
- Missing required 'subjects' field causes request validation failure
- Empty subjects array returns no results
- Payment failure (x402 insufficient funds) blocks the request
- Network timeout or Zapper service unavailability returns a server error

## How this service works

Enterprise grade onchain data across 60+ chains - token prices, NFTs, portfolios, onchain search, Farcaster and more.

## Output

Returns a list of on-chain transactions associated with the submitted wallet address(es), including transaction details such as actions, timestamps, and token movements, as paginated results (default 10 per query).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "after": {
   "type": "string",
   "description": "Cursor for pagination"
  },
  "first": {
   "type": "integer",
   "default": 10,
   "description": "Number of transactions to return"
  },
  "chainIds": {
   "type": "array",
   "items": {
    "type": "integer"
   },
   "description": "Optional list of Chain IDs to filter by"
  },
  "subjects": {
   "type": "array",
   "items": {
    "type": "string",
    "description": "A 0x wallet address"
   },
   "description": "Array of 0x wallet addresses to get transaction history for"
  },
  "perspective": {
   "type": "string",
   "default": "All",
   "description": "Transaction perspective filter (e.g. \"All\", \"Signer\", \"Receiver\")"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/public-zapper-xyz-520c3cf6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from public.zapper.xyz](https://www.zero.xyz/host/public.zapper.xyz/llms.txt)
