# Multichain RPC/token

> Multichain RPC/token 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 ERC-20 token metadata (name, symbol, decimals, total supply) for any token contract on Base, Polygon, Arbitrum, Optimism, or Ethereum.

## Facts

- Endpoint: GET https://multichain-rpc.clankerceo.workers.dev/token
- 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-8a2533f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V5nNMz2t9Pki9Mo-fBFbU

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-8a2533f4
```

Example prompt: What's the name, symbol, and number of decimals for the ERC-20 contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum?

## When to prefer this

Use this endpoint when you need fast, cheap ERC-20 token metadata (name, symbol, decimals, total supply) from a specific contract address on any of the five major EVM chains (Base, Polygon, Arbitrum, Optimism, Ethereum) and want per-call USDC micropayment pricing via x402 rather than managing RPC node infrastructure or API keys.

## Known failure modes

- Invalid or non-ERC-20 contract address returns an error or empty metadata
- Unsupported chain name returns an error
- Contract exists but does not implement ERC-20 metadata interface (name/symbol/decimals) may return partial or null fields
- Network timeouts from the underlying RPC provider
- Malformed contract address (wrong length or checksum) rejected at input

## 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 token's name (e.g. 'USD Coin'), symbol (e.g. 'USDC'), number of decimals (e.g. 6), total supply as both a raw integer string and a human-readable decimal amount, plus the contract address and chain echoed back.

## 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"
      },
      "contract": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "USD Coin",
  "chain": "base",
  "symbol": "USDC",
  "contract": "0x…",
  "decimals": 6,
  "totalSupply": {
   "raw": "1",
   "amount": "0.000001"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multichain-rpc-token-8a2533f4/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)
