# Phantom API — Token Transfers Lookup

> Phantom API — Token Transfers Lookup 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 on-chain token transfer history for a given wallet address, with optional filtering by contract, block range, and pagination.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/bob/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-token-transfers-lookup-dfc9fbd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9eWPIgp7p9IWs1YE2EMqM

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-token-transfers-lookup-dfc9fbd6 -d '<json body>'
```

Example prompt: Pull all token transfers for wallet 0xAbC123...def456 from block 18000000 to 18500000, sorted ascending, across these contracts: [0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48], and return up to 100 results.

## When to prefer this

Use this endpoint when you need historical token transfer data for a specific wallet address on a supported blockchain network, especially when filtering by contract address or block range. Prefer this over general transaction endpoints when your focus is token movements (ERC-20, ERC-721, etc.) rather than native currency transfers or smart contract calls. The pay-per-call x402 model makes it cost-effective for low-frequency lookups without a subscription.

## Known failure modes

- Invalid or malformed owner address returns an error or empty result set
- Invalid block numbers (fromBlock/toBlock) may return an error or unexpected range
- Expired or invalid pageKey causes pagination failure
- Unsupported contract address formats cause query errors
- Rate limiting or payment failure (x402) blocks the request
- Empty result set returned when no transfers exist for the given parameters

## 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 list of token transfer events for the specified owner address, each including sender, recipient, token contract, amount, block number, and transaction hash. Also returns a pagination key (pageKey) when more results are available beyond the requested maxCount.

## 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-token-transfers-lookup-dfc9fbd6/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)
