# AgenticFi EVM Wallet Activity Feed

> AgenticFi EVM Wallet Activity Feed 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 a newest-first paginated activity feed for an EVM wallet address, including transfers, swaps, approvals, NFT movements, and decoded contract calls across multiple chains

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/activity/: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-evm-wallet-activity-feed-60f040a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q7tW7sWvdSSiIo_Kw9LgE

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-evm-wallet-activity-feed-60f040a5
```

Example prompt: Pull the last 50 activity items for wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Base and Ethereum — I want to see swaps and approvals only.

## When to prefer this

Use this endpoint when you need a comprehensive, decoded, multi-chain activity history for an EVM wallet — especially when you need to distinguish between swaps, approvals, NFT movements, and contract calls rather than just raw transactions. Prefer this over block explorer APIs when you need structured, agent-friendly output with filtering by activity type and asset standard.

## Known failure modes

- Invalid wallet address format returns 400 error
- Unsupported chain_ids value returns 400 or empty result
- limit out of range (>100 or <1) returns 400
- Invalid offset cursor returns 400 or unexpected results
- Address with no activity returns empty list
- Payment not provided or insufficient returns 402
- Rate limiting or upstream node unavailability returns 503

## How this service works

EVM wallet activity feed - newest-first transfers, swaps, approvals, NFT movements, and decoded contract calls

## Output

A newest-first list of on-chain activity items for the specified wallet, each decoded into typed events (send, receive, mint, burn, swap, approve, call) with asset details, amounts, counterparties, and a next_offset cursor for pagination.

## 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. Legacy gateway alias for a single chain name, mapped to chain_ids Examples: base, ethereum, arbitrum"
      },
      "limit": {
       "type": "string",
       "title": "limit (optional)",
       "description": "Optional. Maximum number of activity items to return, 1-100 Examples: 100, 500"
      },
      "offset": {
       "type": "string",
       "title": "offset (optional)",
       "description": "Optional. Pagination cursor returned in next_offset Examples: eyJvZmZzZXQiOjEwMH0= (use next_offset from the previous response)"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      },
      "chain_ids": {
       "type": "string",
       "title": "chain_ids (optional)",
       "description": "Optional. Sim chain IDs and/or tags, e.g. '1,8453' or 'default' Examples: 8453, 1,8453, default"
      },
      "asset_type": {
       "type": "string",
       "title": "asset_type (optional)",
       "description": "Optional. Comma-separated asset standards: native, erc20, erc721, erc1155"
      },
      "activity_type": {
       "type": "string",
       "title": "activity_type (optional)",
       "description": "Optional. Comma-separated activity types: send, receive, mint, burn, swap, approve, call"
      },
      "token_address": {
       "type": "string",
       "title": "token_address (optional)",
       "description": "Optional. F
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-evm-wallet-activity-feed-60f040a5/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)
