# Phantom API – Robinhood Token Transfers

> Phantom API – Robinhood 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 ERC-20 and native token transfer history for a given wallet address on Robinhood-related blockchain data, with pagination and block-range filtering.

## Facts

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

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-robinhood-token-transfers-73b091fa -d '<json body>'
```

Example prompt: Can you pull all token transfers for wallet 0xAbc123...def in descending order, limited to 50 results, between blocks 18000000 and 19000000, and only for the USDC contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48?

## When to prefer this

Choose this endpoint when you need to retrieve token transfer history for a specific wallet address on-chain, especially when you need block-range filtering, contract-specific filtering, or paginated results. Prefer this over general blockchain explorers when you need structured JSON output suitable for programmatic processing by an AI agent, and when pay-per-call pricing ($0.01 USDC) is acceptable for targeted queries.

## Known failure modes

- Invalid or missing owner address returns a 400 error
- Unrecognized contract address format causes a validation error
- Invalid block number format (non-hex or out-of-range) returns an error
- Expired or invalid pageKey causes a pagination reset or error
- Exceeding maximum allowed maxCount may result in truncated or error response
- Network timeout if block range spans an excessively large number of blocks

## 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 wallet, each including transaction hash, block number, from/to addresses, asset symbol, contract address, token amount, and a pagination key for fetching the next page of results.

## 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-robinhood-token-transfers-73b091fa/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)
