# EVM Wallet Native Balance Lookup

> EVM Wallet Native Balance Lookup is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns the native token balance of an EVM wallet address on a specified chain (e.g. ETH on Base)

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/wallet/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/evm-wallet-native-balance-lookup-344095c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GGdUakRTVsMpuURJCu1KD

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-native-balance-lookup-344095c8
```

Example prompt: What's the native ETH balance of wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Base right now?

## When to prefer this

Use this endpoint when you need the native coin balance (ETH, MATIC, etc.) of a specific wallet on an EVM chain without setting up your own RPC node or Web3 library. Ideal for lightweight agent workflows that need on-chain balance data without full blockchain infrastructure. Prefer this over token-specific balance endpoints when you need the base gas currency.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported or unrecognized chain identifier may return an error or empty result
- RPC node downtime for the requested chain may cause a timeout or failure
- Missing required query parameters (address or chain) likely returns a 400 error

## How this service works

Native balance of an EVM wallet. ?address=0x...&chain=base

## Output

Returns the native token balance (e.g. ETH in wei or formatted units) for the specified wallet address on the given EVM chain, reflecting the current on-chain state at the time of the request.

## 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",
     "properties": {
      "chain": {
       "type": "string"
      },
      "address": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-wallet-native-balance-lookup-344095c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
