# Phantom API — Superseed Token Transfers

> Phantom API — Superseed 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 Superseed network for a given owner address or contract, with block range and pagination support.

## Facts

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

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-superseed-token-transfers-ff9a1619 -d '<json body>'
```

Example prompt: Pull all token transfers for wallet address 0xAbC...123 on the Superseed network from block 100000 to 200000, sorted descending, and return up to 50 results.

## When to prefer this

Use this endpoint when you specifically need token transfer history on the Superseed network. It is ideal for auditing wallet activity, tracking ERC-20 movements between blocks, or paginating through large transfer histories on Superseed. Choose this over general Ethereum mainnet APIs when your target is Superseed-specific on-chain data.

## Known failure modes

- Invalid owner address format returns a validation error
- Non-existent contract address returns empty result set
- Invalid block range (fromBlock > toBlock) returns an error
- Missing required owner field causes a 400 bad request
- Rate limiting or payment failure returns a 402 response
- Page key from a different query context may return unexpected results

## 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 the Superseed network, each including sender, recipient, token contract address, amount, block number, and transaction hash. Supports pagination via a page key 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-superseed-token-transfers-ff9a1619/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)
