# EVM Wallet Balance Checker (Base) — AmanChain

> EVM Wallet Balance Checker (Base) — AmanChain is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.001244/call, status unknown (last checked 2026-09-15).

Returns the native ETH balance and USDC balance of any EVM address on the Base network, queried against live on-chain state.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-evm-balance
- Price: $0.001244/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-wallet-balance-checker-base-amanchain-8b468ab3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aLtdnBlRtIFxqOgA7nlYm

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 evm-wallet-balance-checker-base-amanchain-8b468ab3 -d '<json body>'
```

Example prompt: What are the current ETH and USDC balances for wallet address 0x4200000000000000000000000000000000000006 on Base?

## When to prefer this

Choose this endpoint when you need a real-time, deterministic balance lookup for both native ETH and USDC on the Base L2 network without needing an API key or account — particularly in pay-per-call agent workflows using x402 micropayments on Base.

## Known failure modes

- Invalid or malformed EVM address returns an error
- Address with no activity may return zero balances
- Payment failure via x402 (insufficient USDC for the $0.001244 fee) blocks the call
- Network or node unavailability may cause timeouts
- Wrong serviceId value causes routing failure

## How this service works

EVM Wallet Balance: native ETH + USDC balance of any address on Base Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-evm-balance","request":"<input>"}. No account, no API key.

## Output

Returns the native ETH balance and USDC token balance of the queried EVM address as live on-chain values from the Base network, reflecting the current consensus state.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-evm-balance\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-wallet-balance-checker-base-amanchain-8b468ab3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
