# Phantom API — Base Chain Transaction History

> Phantom API — Base Chain Transaction History is a paid API for AI agents from phantom-api-omega.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Retrieves paginated transaction history for addresses on the Base blockchain network, with filtering by block range, category, and address.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/base/tx/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phantom-api-base-chain-transaction-history-0e8d6709
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d5XhOWeKmsZAOF6ek3e8b

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 phantom-api-base-chain-transaction-history-0e8d6709 -d '<json body>'
```

Example prompt: Pull the last 50 transactions sent from wallet 0xAbC...123 on Base, in descending order, and include metadata — filter out any zero-value transfers.

## When to prefer this

Choose this endpoint when you need historical transaction data specifically on the Base network, with fine-grained control over address filtering, block ranges, sort order, and pagination. Prefer it over generic block explorers when you need programmatic, structured JSON output with pay-per-call economics rather than a scraping or subscription model.

## Known failure modes

- Invalid address format returns an error or empty result
- Block range too large may time out or be rejected
- Unknown category values may be silently ignored or cause errors
- Missing both fromAddress and toAddress may return an error
- pageKey mismatch or expiry causes pagination to fail
- Payment failure (x402) blocks the request before processing

## How this service works

Lightning-fast access to blockchain data, smart contract insights, and Web3 infrastructure across 57+ networks. Pay-per-call via x402.

## Output

Returns a paginated list of transactions on the Base network matching the specified filters, including transaction hashes, block numbers, from/to addresses, asset amounts, and optionally rich metadata such as token symbols and timestamps. A pageKey is returned when more results are available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "pageKey": {
   "type": "string"
  },
  "toBlock": {
   "type": "string"
  },
  "category": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "maxCount": {
   "type": "number"
  },
  "fromBlock": {
   "type": "string"
  },
  "toAddress": {
   "type": "string"
  },
  "fromAddress": {
   "type": "string"
  },
  "withMetadata": {
   "type": "boolean"
  },
  "excludeZeroValue": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-base-chain-transaction-history-0e8d6709/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phantom-api-omega.vercel.app](https://www.zero.xyz/host/phantom-api-omega.vercel.app/llms.txt)
