# api2ls.com EVM Token Balance Lookup

> api2ls.com EVM Token Balance Lookup is a paid API for AI agents from api2ls.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the live native or ERC-20 token balance of an on-chain address across multiple EVM networks

## Facts

- Endpoint: GET https://api2ls.com/api/balance
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api2ls-com-evm-token-balance-lookup-dc08d158
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hpJkZeeULObi5HUClDEte

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 api2ls-com-evm-token-balance-lookup-dc08d158
```

Example prompt: What's the current USDC balance (contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) for the wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum?

## When to prefer this

Use this endpoint when you need a real-time, on-chain balance for a specific wallet on a supported EVM network (Base, Ethereum, Optimism, Arbitrum, Polygon), especially when you want both the human-readable and raw balance along with decimal metadata. Prefer this over exchange APIs when you need trustless, on-chain data rather than custodial account balances.

## Known failure modes

- Invalid or malformed address returns an error response
- Unsupported chain name returns an error
- Invalid ERC-20 contract address causes a failed lookup
- Network or RPC downtime may result in a timeout or error
- Missing required address parameter returns a validation error

## How this service works

Get the live native or ERC-20 token balance of an address

## Output

Returns a JSON object with success flag, the formatted balance string, raw balance (balanceRaw), decimal precision, chain name, queried address, and a timestamp (asOf) indicating when the balance was fetched.

## 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": {
       "type": "string",
       "description": "EVM network: base (default), ethereum, optimism, arbitrum, or polygon"
      },
      "token": {
       "type": "string",
       "description": "Optional ERC-20 contract address; omit for the native coin balance"
      },
      "address": {
       "type": "string",
       "description": "Account address to check (0x…)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "balance"
     ],
     "properties": {
      "asOf": {
       "type": "string"
      },
      "chain": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "balance": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "decimals": {
       "type": "number"
      },
      "balanceRaw": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api2ls-com-evm-token-balance-lookup-dc08d158/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api2ls.com](https://www.zero.xyz/host/api2ls.com/llms.txt)
