# EVM Wallet Balance Lookup

> EVM Wallet Balance Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-15).

Returns the native token balance of a given EVM wallet address on a specified blockchain network, optionally including the live USD equivalent value.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/wallet-balance
- Price: $0.059/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-lookup-cac59946
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-amm47AOF0lsRqX0GdYIg

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-lookup-cac59946
```

Example prompt: What's the ETH balance of wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum — and can you show me the USD value too?

## When to prefer this

Use this endpoint when you need a quick, no-account, pay-per-call native token balance check for any EVM-compatible wallet across Ethereum, Base, Polygon, Arbitrum, Optimism, or BSC. Prefer it over block explorer APIs when you want micropayment-gated access without API key management, or when building autonomous agents that need on-chain balance data on-demand.

## Known failure modes

- Invalid or malformed wallet address (not 0x-prefixed or not 42 characters) returns an error
- Unsupported network value returns a validation error
- Address with no on-chain history may return a zero balance
- Live USD price fetch failure may cause with_usd=true requests to fail or return null for USD value
- Rate limiting or upstream RPC node unavailability may cause transient errors
- Payment failure (insufficient USDC or bad x402 header) results in 402 response

## How this service works

Returns the native token balance (ETH, POL, BNB) for any EVM wallet address. Supports Ethereum, Base, Polygon, Arbitrum, Optimism, and BSC. Includes optional USD value. $0.002/call — 60% below comparable market rate. Free upstreams: DRPC + CoinGecko, no API key required.

## Output

Returns the native token balance of the queried wallet address on the specified EVM-compatible network. If with_usd is true, also returns the live USD equivalent of the balance, fetched at query time.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x1234567890123456789012345678901234567890",
   "network": "base",
   "with_usd": false
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-wallet-balance-lookup-cac59946/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
