# ProofSignal Wallet Snapshot

> ProofSignal Wallet Snapshot is a paid API for AI agents from enough-kate-provide-bennett.trycloudflare.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a comprehensive Base mainnet wallet readiness snapshot including checksum address, EOA/contract classification, ETH balance, native USDC balance, transaction nonce, and current block number in a single call.

## Facts

- Endpoint: GET https://enough-kate-provide-bennett.trycloudflare.com/wallet-snapshot
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proofsignal-wallet-snapshot-82a9fea3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mih-Cu86I7UzTPPzDjiXe

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 proofsignal-wallet-snapshot-82a9fea3
```

Example prompt: Can you pull a full wallet snapshot for 0x742d35Cc6634C0532925a3b8D4C9B7F1a6E1Dc9 on Base — I need to know whether it's an EOA or contract, its ETH and USDC balances, its nonce, and what block we're on right now?

## When to prefer this

Choose this endpoint when you need a single-call summary of a wallet's readiness on Base mainnet — especially when you need multiple data points (ETH balance, USDC balance, nonce, account type, and block number) simultaneously and want to avoid multiple round-trips. Prefer this over individual balance endpoints when you need to quickly assess whether a wallet can participate in a transaction or DeFi action. It is purpose-built for Base mainnet and is not suitable for other EVM chains.

## Known failure modes

- Missing or malformed address parameter returns a 400 error
- Non-0x-prefixed address fails validation
- Address not found on Base mainnet may return zero balances rather than an error
- Network congestion may cause slightly stale block number data
- x402 payment failure or insufficient USDC for the $0.001 fee returns a 402 Payment Required response
- Cloudflare tunnel downtime may result in connection errors

## How this service works

Base wallet readiness snapshot: checksum address, EOA or contract classification, ETH and native USDC balances, transaction nonce, and current block in one response.

## Output

A JSON object containing the checksummed wallet address, chain ID, network name, account type (EOA or contract), ETH balance as a string, native USDC balance as a string, transaction count/nonce as a number, current block number, and a checkedAt timestamp — all reflecting the live state of the address on Base mainnet at the moment of the call.

## 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": "0x-prefixed EVM wallet or contract address on Base mainnet"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string"
      },
      "chainId": {
       "type": "number"
      },
      "network": {
       "type": "string"
      },
      "checkedAt": {
       "type": "string"
      },
      "ethBalance": {
       "type": "string"
      },
      "accountType": {
       "type": "string"
      },
      "blockNumber": {
       "type": "string"
      },
      "usdcBalance": {
       "type": "string"
      },
      "transactionCount": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proofsignal-wallet-snapshot-82a9fea3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from enough-kate-provide-bennett.trycloudflare.com](https://www.zero.xyz/host/enough-kate-provide-bennett.trycloudflare.com/llms.txt)
