# AgenticFi Wallet Transaction History

> AgenticFi Wallet Transaction History is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves the on-chain transaction history for a given wallet address, optionally filtered by chain

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/history/%7Baddress%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-wallet-transaction-history-625e04e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k2SZ_KbPv2B_l-zgmPVYF

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 agenticfi-wallet-transaction-history-625e04e2
```

Example prompt: Pull the full transaction history for wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Base so I can see what it's been doing on-chain.

## When to prefer this

Use this endpoint when you need to audit or review the historical on-chain activity of a specific wallet address across DeFi-relevant chains like Base, Ethereum, or Arbitrum. Prefer this over generic block explorers when you need structured JSON output suitable for programmatic analysis by an AI agent, and when you need pay-per-call pricing without an API key subscription.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain key returns an error or empty result
- Wallet with no transaction history returns empty array
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if called too frequently
- Network/RPC timeout for chains with slow indexing

## How this service works

Transaction history - decoded actions with method labels

## Output

A list of on-chain transactions associated with the specified wallet address, including details such as transaction hashes, timestamps, token transfers, contract interactions, and values, filtered by the requested chain if provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "title": "chain (optional)",
       "description": "Optional. Chain key Examples: base, ethereum, arbitrum"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-wallet-transaction-history-625e04e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
