# Wallet Portfolio Balance Lookup

> Wallet Portfolio Balance Lookup is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Retrieves the native ETH balance and token holdings for a given wallet address on Base or Ethereum

## Facts

- Endpoint: GET https://klymax402.com/api/wallet-portfolio/api/balance
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-portfolio-balance-lookup-8e850619
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_40UFyQpyglYN-fZrH4Fv0

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 wallet-portfolio-balance-lookup-8e850619
```

Example prompt: What's the current ETH balance and token holdings for wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e on Base?

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call balance lookup for a wallet on Base or Ethereum without managing your own RPC infrastructure or API keys. Ideal for agents that need on-chain wallet data infrequently and want minimal setup overhead. Prefer alternatives if you need historical balance data, ERC-20 token details beyond native ETH, or multi-chain support beyond Base and Ethereum.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Unsupported chain value (not 'base' or 'ethereum') causes a 400-level error
- Payment failure via x402 protocol blocks the call if USDC balance is insufficient
- Network timeouts or upstream RPC failures may return empty or error responses
- Address with no activity may return zero balances

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the wallet address, the blockchain chain name, and an ETH balance object with native and token-level holdings for the queried address on the specified network (Base or Ethereum).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum"
       ],
       "type": "string",
       "description": "Blockchain network (default: base)"
      },
      "address": {
       "type": "string",
       "description": "Wallet address (0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "eth": {},
  "chain": "example",
  "address": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-portfolio-balance-lookup-8e850619/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
