# Multichain RPC - Wallet Balance

> Multichain RPC - Wallet Balance 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-14).

Returns native coin and ERC-20 token balances for any wallet address on Base, Polygon, Arbitrum, Optimism, or Ethereum, in both raw and human-readable decimal formats.

## Facts

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

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-wallet-balance-623d30db
```

Example prompt: What's the ETH balance of wallet 0xAbCd1234...5678 on Base — give me both the raw wei amount and the human-readable decimal?

## When to prefer this

Choose this endpoint when you need a fast, single-call balance lookup for a wallet on any of the five supported EVM chains (Base, Polygon, Arbitrum, Optimism, Ethereum) and want both raw wei and human-readable decimal in one response. It is ideal for agents that need on-chain balance data without setting up their own RPC infrastructure, and especially useful when cost predictability matters ($0.002 USDC per call). Prefer alternatives if you need historical balance data, multiple wallets in batch, or chains outside the supported five.

## 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
- Network timeout or RPC node unavailability may result in a failed response
- Missing required query parameters (chain or address) causes a 400-level error
- Rate limiting or payment failure (x402) blocks the response

## 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 queried chain name, the wallet address, and a native balance object with the raw wei amount, human-readable decimal amount, and the coin symbol (e.g. ETH, MATIC). The response is returned in a single call, combining raw and formatted amounts for immediate use.

## 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-wallet-balance-623d30db/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)
