# Base Wallet Transaction History

> Base Wallet Transaction History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns up to 20 recent parsed transactions for any Base chain wallet address, including hashes, ETH values, token transfers, gas costs, and transaction type classifications.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/base-wallet-history
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-2bc94a58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gieYIvxoNnEJbXGZOAr3I

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 proxy-suverse-io-2bc94a58 -d '<json body>'
```

Example prompt: Pull up the last 20 transactions for Base wallet 0x1234...abcd — I want to see what swaps, transfers, and mints they've done, how much gas they paid, and a plain-English summary of each one.

## When to prefer this

Use this endpoint when you need a quick, parsed, human-readable transaction history for a specific Base chain wallet — ideal for portfolio managers, tax tools, or trading bots that need classified transaction types (swap/transfer/mint/NFT) without parsing raw RPC data. Prefer this over raw Etherscan or RPC calls when you want pre-classified transaction types and one-line summaries out of the box.

## Known failure modes

- Invalid or malformed wallet address returns error
- Wallet has no transactions on Base returns empty list
- Network congestion may delay data freshness
- Rate limiting if called too frequently
- Payment failure via x402 protocol blocks the request

## How this service works

Parsed Base wallet transaction history by address. Up to 20 recent tx with hash, timestamp, ETH value, token transfers, gas, type (swap/transfer/mint/nft), counterparty, summary. AI agent portfolio tracker, tax tool, trading bot, Base L2 wallet history API.

## Output

A list of up to 20 recent Base chain transactions, each with transaction hash, timestamp, ETH value, token transfers, gas paid in ETH, categorized transaction type (swap, transfer, mint, NFT), counterparty address, and a one-line human-readable description of what happened.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-2bc94a58/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
