# Phantom API — Ink Network Token Balances

> Phantom API — Ink Network Token Balances 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 ERC-20 and native token balances for a wallet address on the Ink blockchain network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/ink/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-ink-network-token-balances-518812e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dbksyAaRe-dZPsb_FlXoo

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-ink-network-token-balances-518812e0 -d '<json body>'
```

Example prompt: Can you check the token balances for wallet 0xAbC123...def on the Ink network, including holdings for contract addresses 0xToken1 and 0xToken2?

## When to prefer this

Choose this endpoint when you need fast, pay-per-call token balance lookups specifically on the Ink blockchain network. It is ideal for agents that need lightweight, on-demand wallet portfolio data without managing a full node or subscription. Prefer it over general-purpose indexers when operating on Ink specifically and when cost-per-call billing via USDC is acceptable.

## Known failure modes

- Invalid or malformed owner address returns an error or empty result
- Unsupported or non-Ink contract addresses return zero balances or errors
- Network timeout if Ink RPC nodes are unresponsive
- Empty array returned if wallet holds no tokens matching the given contracts
- Rate limiting or payment failure if x402 payment header is invalid or insufficient

## 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 balances associated with the specified owner wallet address on the Ink network, optionally filtered by provided contract addresses. Each entry typically includes the token contract address, token symbol or name, balance amount, and decimals.

## 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-ink-network-token-balances-518812e0/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)
