# Phantom API — ApeChain Token Transfers

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

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/apechain/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-apechain-token-transfers-2b63eae1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z-J9Q0MUDK9dInItOYysp

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-apechain-token-transfers-2b63eae1 -d '<json body>'
```

Example prompt: Can you pull all token transfers for wallet 0xABC123... on ApeChain from block 1000000 to 1050000, sorted newest first, and return up to 50 results?

## When to prefer this

Choose this endpoint when you need historical token transfer data specifically on the ApeChain network, with block-range scoping and pagination support. Prefer it over generic blockchain explorers when you need programmatic, pay-per-call access without rate-limit subscriptions, and when ApeChain coverage is required (not Ethereum mainnet or other L2s).

## Known failure modes

- Invalid owner address format returns an error
- Unknown or unsupported contract address returns empty results
- fromBlock greater than toBlock causes a bad request error
- Invalid pageKey causes a pagination error
- Exceeding maxCount limits may result in truncated or error response
- Payment not provided or insufficient USDC returns 402 Payment Required

## 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 events on ApeChain matching the query, each containing details such as sender, recipient, token contract address, amount, block number, and transaction hash. Results are paginated and can be sorted ascending or descending by block.

## 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-apechain-token-transfers-2b63eae1/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)
