# AgentBit Wallet Transaction History on Base

> AgentBit Wallet Transaction History on Base is a paid API for AI agents from agentbit.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves up to 50 normalized recent transactions for any Base wallet, including hash, direction, counterparty, method, value, fee, status, and timestamp.

## Facts

- Endpoint: POST https://agentbit.app/v1/wallet/transactions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-wallet-transaction-history-on-base-9b3554df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MJoQgGy7l4RL1-WhXC1WG

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 agentbit-wallet-transaction-history-on-base-9b3554df -d '<json body>'
```

Example prompt: Pull the last 30 transactions for Base wallet 0x4395c7e383b7e05665aad7f36ed77c01923dd965 — I want to see the direction, counterparty, method called, fee, and timestamp for each one.

## When to prefer this

Choose this endpoint when you need a normalized, agent-ready transaction log for a specific Base wallet — especially when you want direction, counterparty identity, method name, fee, and status in one structured response without parsing raw RPC data. Prefer it over raw node calls or block explorer scraping when you need clean JSON with labeled fields. Complements the sibling wallet-profile endpoint (balance, nonce, EOA type) and counterparty-ranking endpoint for full wallet intelligence.

## Known failure modes

- Invalid or malformed EVM address returns an error or empty result
- Limit out of range (below 1 or above 50) may be clamped or rejected
- Wallets with no Base activity return an empty transactions array
- Explorer data may have brief delays; very recent transactions might not appear
- Network outages at the upstream block explorer cause downstream failures

## How this service works

The latest transactions of any wallet on Base, normalized for agents: hash, direction (in/out), counterparty address and explorer name, native value, method called, status, fee and timestamp. Up to 50 per call from public explorer data. The history layer of the wallet-intelligence shelf.

## Output

Returns a JSON object containing the queried address, network identifier (eip155:8453 for Base), a transaction count, and an array of up to 50 transactions. Each transaction includes: hash, method name called, status (ok/failed), direction (in/out), counterparty address, counterparty explorer label if available, native ETH value, fee in ETH, and ISO-8601 timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max transactions to return (1-50, default 20)"
  },
  "address": {
   "type": "string",
   "description": "EVM address on Base (0x + 40 hex)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x4395c7e383b7e05665aad7f36ed77c01923dd965",
  "network": "eip155:8453",
  "transactions": [
   {
    "hash": "0x125a40ad9df7b0ba7b15ee62a00a3b0929b6a7e854de59169f25184e8d2447bb",
    "method": "transferWithAuthorization",
    "status": "ok",
    "fee_eth": 0.00000212,
    "direction": "in",
    "timestamp": "2026-09-06T09:56:34Z",
    "value_eth": 0,
    "counterparty": "0x14d7809559ef382d292e073f74f5ee86669cf823",
    "counterparty_name": null
   }
  ],
  "transaction_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-wallet-transaction-history-on-base-9b3554df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
