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

Returns decoded transaction history for a wallet address with human-readable method labels and action descriptions

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/history/:address
- 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-2b61f19a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f7Ty18HUUa2LmaVvn-UGH

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-2b61f19a
```

Example prompt: Pull the decoded transaction history for wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Base — I want to see all the on-chain actions with method labels.

## When to prefer this

Use this endpoint when you need human-readable, decoded transaction history for a wallet rather than raw blockchain data. Ideal for DeFi portfolio analysis, user activity auditing, or when you need method-level labels on transactions across Base, Ethereum, or Arbitrum. Prefer this over generic blockchain explorers when you need structured, agent-consumable output with semantic action labels.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain key returns an error or empty result
- Payment not provided triggers HTTP 402 Payment Required
- Address with no transaction history returns empty array
- Rate limiting or API downtime returns 5xx error

## How this service works

Transaction history - decoded actions with method labels

## Output

A list of past transactions for the wallet, each enriched with decoded action labels (e.g. 'swap', 'addLiquidity', 'transfer') and method names, making raw blockchain history human-readable for analysis.

## 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-2b61f19a/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)
