# signals.edge.report Wallet Full Balance Bundle

> signals.edge.report Wallet Full Balance Bundle is a paid API for AI agents from signals.edge.report, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns native ETH balance, USDC ERC20 balance, transaction nonce, and current gas fees for an EVM wallet address on Base (and optionally Ethereum) in a single call.

## Facts

- Endpoint: GET https://signals.edge.report/v1/wallet/full
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signals-edge-report-wallet-full-balance-bundle-737d8c6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dP6B1laUqlIWSuKzU9Eu9

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 signals-edge-report-wallet-full-balance-bundle-737d8c6e
```

Example prompt: What's the full wallet status for 0xAbc123...def on Base — give me the ETH balance, USDC balance, nonce, and current gas fees all at once.

## When to prefer this

Use this endpoint when an agent needs to evaluate wallet readiness before executing a transaction — specifically when you need ETH balance, USDC balance, nonce, and gas fees together. It replaces three or more separate API calls (balance, ERC20 balanceOf, gas) with a single aggregated lookup on Base, reducing latency and cost. Prefer this over the standalone balance or gas endpoints whenever you need more than one of those signals simultaneously.

## Known failure modes

- Invalid or malformed EVM address returns a 4xx error with an address validation message
- Network or RPC connectivity issues may return a 5xx error or timeout
- Missing required `address` query parameter returns a 400 bad request
- Unsupported chain configuration returns an error if Ethereum is not configured
- Payment failure (insufficient x402 balance) results in a 402 Payment Required response

## How this service works

Live wallet balance bundle for agents: native ETH + USDC ERC20 balances + nonce on Base (and Ethereum when configured) plus current gas fees in one call. Use instead of separate balance and gas lookups.

## Output

A bundled JSON response containing: native ETH balance, USDC ERC20 balance, current transaction nonce for the given address on Base, and live gas fee parameters (maxFeePerGas and maxPriorityFeePerGas) — all in a single API response, eliminating the need for separate balance and gas lookups.

## 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": {
      "address": {
       "type": "string",
       "description": "EVM wallet address to fetch live ETH/USDC balances, nonce, and gas for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "gas": {
   "base": {
    "maxFeePerGasGwei": "0.01",
    "maxPriorityFeePerGasGwei": "0.001"
   }
  },
  "wallet": {
   "base": {
    "eth": "0.01",
    "usdc": "12.5",
    "nonce": 3
   },
   "ethereum": null
  },
  "address": "0x0000000000000000000000000000000000000001",
  "product": "edge-signals-wallet-full",
  "summary": {
   "baseEth": "0.01",
   "baseUsdc": "12.5",
   "baseNonce": 3,
   "baseMaxFeeGwei": "0.01"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signals-edge-report-wallet-full-balance-bundle-737d8c6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signals.edge.report](https://www.zero.xyz/host/signals.edge.report/llms.txt)
