# Phantom API — Base Network Token Transfers

> Phantom API — Base Network Token Transfers 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-14).

Retrieves token transfer history on the Base blockchain for a given wallet address or contract, with filtering and pagination support.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/base/token/transfers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phantom-api-base-network-token-transfers-8757541e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s0nu-URRcilbMz9Dmp5Ul

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-network-token-transfers-8757541e -d '<json body>'
```

Example prompt: Show me all token transfers for wallet 0xAbC...1234 on Base, going back to block 10000000, sorted ascending, and limit it to 50 results for the USDC contract 0x833589...

## When to prefer this

Use this endpoint when you need historical token transfer data specifically on the Base network with fine-grained control over block range, pagination, sort order, and contract filtering. Prefer this over generic blockchain explorers when you need programmatic, structured JSON output suitable for agent consumption and pay-per-call pricing makes sense for your volume.

## Known failure modes

- Invalid owner address format returns an error
- Unknown pageKey causes pagination failure or empty results
- fromBlock greater than toBlock returns an error or empty set
- maxCount exceeding API limits may be capped or return an error
- Missing required fields (owner or contractAddresses) may result in empty or error response
- Network downtime or upstream indexer outage returns 5xx error

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

A list of token transfer records on the Base network, each including sender, recipient, token contract address, amount, block number, and transaction hash. Supports pagination via a pageKey for large result sets.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "owner": {
   "type": "string"
  },
  "pageKey": {
   "type": "string"
  },
  "toBlock": {
   "type": "string"
  },
  "maxCount": {
   "type": "number"
  },
  "fromBlock": {
   "type": "string"
  },
  "contractAddresses": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-base-network-token-transfers-8757541e/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)
