# Phantom API — Token Balances (Degen)

> Phantom API — Token Balances (Degen) 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).

Fetches on-chain token balances for a given wallet address, optionally filtered to specific ERC-20/token contract addresses, across 57+ blockchain networks.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/degen/token/balances
- 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-balances-degen-8a12ad11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zfF1Vhu47Et-CttCHefCP

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-balances-degen-8a12ad11 -d '<json body>'
```

Example prompt: What are the token balances for wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045? Also filter it to just show balances for these two tokens: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 and 0xdAC17F958D2ee523a2206206994597C13D831ec7.

## When to prefer this

Prefer this endpoint when you need fast, pay-per-call on-chain token balance lookups without a subscription commitment, especially across a broad range of EVM-compatible networks. It is ideal for agents doing one-off portfolio checks, airdrop eligibility verification, or whale wallet monitoring. Choose this over free RPC calls when you need reliability, breadth across 57+ networks, and structured output rather than raw RPC responses.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported network or token contract returns no data
- Rate limiting or payment failure (x402) prevents the call from completing
- Contract address not found on-chain returns zero or null balance
- Network congestion may cause delayed or stale data

## 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 on-chain token balances for the specified wallet address. When contract addresses are provided, results are filtered to those specific tokens. Response includes token amounts, contract metadata (symbol, decimals), and human-readable balance values across supported blockchain networks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "owner": {
   "type": "string"
  },
  "contractAddresses": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-token-balances-degen-8a12ad11/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)
