# Multichain RPC Token Balance Lookup

> Multichain RPC Token Balance Lookup is a paid API for AI agents from multichain-rpc.clankerceo.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the ERC-20 token balance (and native coin balance) for a wallet address on a specified EVM chain

## Facts

- Endpoint: GET https://multichain-rpc.clankerceo.workers.dev/token-balance
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multichain-rpc-token-balance-lookup-fe7502ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qImsfJ7hk5YYT005lNj49

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 multichain-rpc-token-balance-lookup-fe7502ed
```

Example prompt: What's the ETH and token balance for wallet 0xAbC...123 on Base right now?

## When to prefer this

Choose this endpoint when you need a fast, cheap, per-call token or native balance lookup across major EVM chains (Base, Polygon, Arbitrum, Optimism, Ethereum) without setting up your own RPC node. At $0.002 USDC per call with x402 micropayment support, it's ideal for AI agents that need on-demand, factual on-chain balance data without a monthly subscription. Prefer it over self-hosted RPC when minimizing infrastructure overhead matters, or over general Web3 APIs when you need a simple pay-per-use model.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain identifier returns an error — only Base, Polygon, Arbitrum, Optimism, and Ethereum are supported
- Missing required query parameters (chain or address) returns a 400-level error
- Network or RPC node timeout may return a 500-level error
- Payment failure (insufficient USDC, x402 not supported by client) blocks the request entirely

## How this service works

Cheap, factual EVM chain lookups priced per call in USDC. Base, Polygon, Arbitrum, Optimism and Ethereum.

## Output

A JSON object containing the chain name, the wallet address queried, and a native balance object with wei amount, human-readable decimal amount, and token symbol (e.g. ETH). For ERC-20 tokens, equivalent balance fields are returned for the specified token contract.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string"
      },
      "address": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "native": {
   "wei": "1000000",
   "amount": "0.000001",
   "symbol": "ETH"
  },
  "address": "0x…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multichain-rpc-token-balance-lookup-fe7502ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from multichain-rpc.clankerceo.workers.dev](https://www.zero.xyz/host/multichain-rpc.clankerceo.workers.dev/llms.txt)
