# Phantom API — Berachain Token Transfers

> Phantom API — Berachain 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 for a given address or contract on the Berachain network, with pagination and block-range filtering.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/berachain/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-berachain-token-transfers-a33d8398
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IRJjjC1mnuO6QUBN-h5T9

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-berachain-token-transfers-a33d8398 -d '<json body>'
```

Example prompt: Pull all token transfers for Berachain wallet 0xAbC...123 from block 1000000 to 2000000, sorted descending, and limit to 50 results.

## When to prefer this

Use this endpoint when you need on-chain token transfer history specifically on the Berachain network, especially when you need block-range filtering, multi-contract filtering, or paginated results via pageKey. Prefer this over generic blockchain explorers when you need programmatic, pay-per-call access without API key registration.

## Known failure modes

- Invalid owner address format returns a 400 or empty result
- Unknown or malformed contractAddress entries may return no results
- Invalid block range (fromBlock > toBlock) may return an error or empty list
- Exhausted page key or stale pageKey returns error or empty page
- Rate limiting or payment failure returns 402 Payment Required
- Network unavailability on Berachain returns a 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

Returns a list of token transfer events on Berachain including sender, receiver, token contract address, value transferred, block number, and transaction hash, with a pagination key for fetching subsequent pages.

## 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-berachain-token-transfers-a33d8398/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)
